Skip to content

Commit 6394b93

Browse files
[pre-commit.ci] pre-commit autoupdate (#430)
* [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]>
1 parent 2315e42 commit 6394b93

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ repos:
2727
- id: trailing-whitespace
2828

2929
- repo: https://github.com/codespell-project/codespell
30-
rev: v2.2.5
30+
rev: v2.2.6
3131
hooks:
3232
- id: codespell
3333
additional_dependencies:
3434
- tomli
3535

3636
- repo: https://github.com/astral-sh/ruff-pre-commit
37-
rev: v0.0.291
37+
rev: v0.0.292
3838
hooks:
3939
- id: ruff
4040

@@ -44,7 +44,7 @@ repos:
4444
- id: black
4545

4646
- repo: https://github.com/tox-dev/pyproject-fmt
47-
rev: 1.1.0
47+
rev: 1.2.0
4848
hooks:
4949
- id: pyproject-fmt
5050

tests/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ def test__send_request(self):
334334

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

0 commit comments

Comments
 (0)