Skip to content

Commit

Permalink
fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
provinzkraut committed Jun 22, 2023
1 parent 8bc40cd commit 5e4cfa4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/test_signature/test_parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
),
)
Expand Down

0 comments on commit 5e4cfa4

Please sign in to comment.