Skip to content

Commit c6665db

Browse files
committed
Fix test
1 parent 2262350 commit c6665db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/client_generators/dependencies/test_base_model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ class TestModelA(BaseModel):
117117

118118
TestModelA.parse_obj(
119119
{"value": "a", "field_b": {"value": "b", "field_c": {"value": "c"}}}
120-
).dict()
120+
)
121121

122122
assert mocked_parse.call_count == 3
123123
assert {c.args[0] for c in mocked_parse.call_args_list} == {"a", "b", "c"}

0 commit comments

Comments
 (0)