diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0606f85c..373d69f6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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 @@ -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 diff --git a/tests/test_client.py b/tests/test_client.py index 08846e30..e39c2382 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -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" )