From 5d44c81aba0aca877ddd36d575c1ffced8a83ac9 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Fri, 22 Nov 2024 17:16:10 -0500 Subject: [PATCH] [DATALAD RUNCMD] Fixing 'unparseable' quote using experimental codespell codespell from https://github.com/codespell-project/codespell/pull/3588 === Do not change lines below === { "chain": [], "cmd": "codespell -w ./tests/unit/test_schema_invalids.py", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^ --- tests/unit/test_schema_invalids.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_schema_invalids.py b/tests/unit/test_schema_invalids.py index d94ffa4..7d28c33 100644 --- a/tests/unit/test_schema_invalids.py +++ b/tests/unit/test_schema_invalids.py @@ -137,7 +137,7 @@ def cant_parse_annotation(self, unparsable: PydanticUnparsableInner) -> None: .. with pytest.raises(SystemExit): get_schema_helper([PydanticUnparsable]) assert ( - "On capability 'PydanticUnparsable', parameter 'unparseable' type annotation" in caplog.text + "On capability 'PydanticUnparsable', parameter 'unparsable' type annotation" in caplog.text ) assert "on function 'cant_parse_annotation' is invalid" in caplog.text