Skip to content

Commit

Permalink
Allow better parallelization in firestore tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TimPansino committed Jul 26, 2023
1 parent b9a91e5 commit cb550ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/datastore_firestore/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def existing_document(collection, reset_firestore):


def _exercise_client(client, collection, existing_document):
assert len([_ for _ in client.collections()]) == 1
assert len([_ for _ in client.collections()]) >= 1
doc = [_ for _ in client.get_all([existing_document])][0]
assert doc.to_dict()["x"] == 1

Expand Down

0 comments on commit cb550ba

Please sign in to comment.