Skip to content

Commit

Permalink
Need to return empty string if env not set
Browse files Browse the repository at this point in the history
  • Loading branch information
adambollen committed Oct 6, 2023
1 parent 441aa9b commit a6dea68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_client_with_query_limits.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


def query_collection(client: Client) -> QuerySuccess:
coll_name = os.environ.get("QUERY_LIMITS_COLL")
coll_name = os.environ.get("QUERY_LIMITS_COLL") or ""
return client.query(fql("${coll}.all().paginate(50)", coll=fql(coll_name)))


Expand Down

0 comments on commit a6dea68

Please sign in to comment.