Skip to content

Commit

Permalink
✏️ Tweak fix for dict response
Browse files Browse the repository at this point in the history
  • Loading branch information
yezz123 committed Jul 8, 2024
1 parent e0b11e1 commit e133ced
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def test_token_payload_extra_fields(sample_payload):
if PYDANTIC_V2:
assert payload.extra_dict == {}
else:
assert payload.extra_dict == {"extra_field": "extra_value"}
assert payload.extra_dict == {"extra_field": "extra_value", "name": "John Doe"}


def test_token_payload_encode_decode():
Expand Down

0 comments on commit e133ced

Please sign in to comment.