Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#430)
Browse files Browse the repository at this point in the history
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/codespell-project/codespell: v2.2.5 → v2.2.6](codespell-project/codespell@v2.2.5...v2.2.6)
- [github.com/astral-sh/ruff-pre-commit: v0.0.291 → v0.0.292](astral-sh/ruff-pre-commit@v0.0.291...v0.0.292)
- [github.com/tox-dev/pyproject-fmt: 1.1.0 → 1.2.0](tox-dev/pyproject-fmt@1.1.0...1.2.0)

* Fix typo

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Christian Clauss <[email protected]>
  • Loading branch information
pre-commit-ci[bot] and cclauss authored Oct 3, 2023
1 parent 2315e42 commit 6394b93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/codespell-project/codespell
rev: v2.2.5
rev: v2.2.6
hooks:
- id: codespell
additional_dependencies:
- tomli

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.291
rev: v0.0.292
hooks:
- id: ruff

Expand All @@ -44,7 +44,7 @@ repos:
- id: black

- repo: https://github.com/tox-dev/pyproject-fmt
rev: 1.1.0
rev: 1.2.0
hooks:
- id: pyproject-fmt

Expand Down
2 changes: 1 addition & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def test__send_request(self):

def test__send_request_to_bad_path(self):
# Test a non-existent URL:
self.solr.url = "http://127.0.0.1:56789/wahtever"
self.solr.url = "http://127.0.0.1:56789/whatever"
self.assertRaises(
SolrError, self.solr._send_request, "get", "select/?q=doc&wt=json"
)
Expand Down

0 comments on commit 6394b93

Please sign in to comment.