Skip to content

Commit

Permalink
Fix an integration test (#568)
Browse files Browse the repository at this point in the history
The test `test_social_network.py` fails in backend mode because of wrong
type assigned to a field. This change fixes the same.
  • Loading branch information
satrana42 authored Sep 22, 2024
1 parent c7a227b commit 2c9df25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fennel/client_tests/test_social_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class PostInfoWithRightFields:
category: str # type: ignore
post_id: int = field(key=True)
timestamp: datetime
extra_field: str
extra_field: int


@meta(owner="[email protected]")
Expand Down

0 comments on commit 2c9df25

Please sign in to comment.