Skip to content

Commit

Permalink
fixup! fix: serialization issues in GraphQL orderBy and where
Browse files Browse the repository at this point in the history
  • Loading branch information
serramatutu committed Nov 11, 2024
1 parent 59ccc71 commit 6ebccf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,6 @@ def test_validate_query_params_adhoc_and_saved_query() -> None:


def test_validate_query_params_no_query() -> None:
p: QueryParameters = {"limit": 1, "where": ["1=1"], "order_by": ["a"], "read_cache": False}
p: QueryParameters = {"group_by": ["gb"], "limit": 1, "where": ["1=1"], "order_by": ["a"], "read_cache": False}
with pytest.raises(ValueError):
validate_query_parameters(p)

0 comments on commit 6ebccf1

Please sign in to comment.