diff --git a/tests/unit/test_signature/test_parsing.py b/tests/unit/test_signature/test_parsing.py index f8e15570fa..50b18a8b50 100644 --- a/tests/unit/test_signature/test_parsing.py +++ b/tests/unit/test_signature/test_parsing.py @@ -121,9 +121,7 @@ async def health_check() -> None: @pytest.mark.parametrize( "preferred_validation_backend, error_message", ( - pytest.param( - "attrs", "invalid literal for int() with base 10: 'thirteen'", marks=pytest.mark.skip, id="attrs" - ), + pytest.param("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="pydantic"), pytest.param("msgspec", "Expected `int`, got `str` - at `$.dep`", id="msgspec"), ),