From 5e4cfa44afea455779b95085c62881da9a89f597 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janek=20Nouvertn=C3=A9?= <25355197+provinzkraut@users.noreply.github.com> Date: Thu, 22 Jun 2023 09:39:12 +0200 Subject: [PATCH] fix a typo --- tests/unit/test_signature/test_parsing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/test_signature/test_parsing.py b/tests/unit/test_signature/test_parsing.py index 3bfea45422..f8e15570fa 100644 --- a/tests/unit/test_signature/test_parsing.py +++ b/tests/unit/test_signature/test_parsing.py @@ -122,9 +122,9 @@ async def health_check() -> None: "preferred_validation_backend, error_message", ( pytest.param( - "attrs", "invalid literal for int() with base 10: 'thirteen'", marks=pytest.mark.skip, id="pydantic" + "attrs", "invalid literal for int() with base 10: 'thirteen'", marks=pytest.mark.skip, id="attrs" ), - pytest.param("pydantic", "value is not a valid integer", marks=pytest.mark.skip, id="attrs"), + pytest.param("pydantic", "value is not a valid integer", marks=pytest.mark.skip, id="pydantic"), pytest.param("msgspec", "Expected `int`, got `str` - at `$.dep`", id="msgspec"), ), )