Skip to content

Commit

Permalink
fix test test_export_json_complex_model
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisDudnik committed Dec 17, 2024
1 parent 1e54fdf commit b9c4d2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_views/test_view_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ def test_export_json_complex_model(client: TestClient) -> None:

response = client.get("/admin/address/export/json")
assert response.text == json.dumps(
[{"id": "1", "user_id": "1", "user": "User 1", "user.profile.id": "None"}]
[{"id": 1, "user_id": 1, "user": "User 1", "user.profile.id": None}]
)


Expand Down

0 comments on commit b9c4d2b

Please sign in to comment.