Skip to content

Commit

Permalink
Updated pydantic model tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JnyJny committed Nov 24, 2023
1 parent 32d1d91 commit 6f3d00d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_pydantic_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"path,expected_exception",
[
("foo", None),
(1, None),
(3.145, None),
(1, ValidationError),
(3.145, ValidationError),
({"foo": 1}, ValidationError),
(None, ValidationError),
([], ValidationError),
Expand Down

0 comments on commit 6f3d00d

Please sign in to comment.