Skip to content

Commit cb550ba

Browse files
committed
Allow better parallelization in firestore tests
1 parent b9a91e5 commit cb550ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/datastore_firestore/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def existing_document(collection, reset_firestore):
3232

3333

3434
def _exercise_client(client, collection, existing_document):
35-
assert len([_ for _ in client.collections()]) == 1
35+
assert len([_ for _ in client.collections()]) >= 1
3636
doc = [_ for _ in client.get_all([existing_document])][0]
3737
assert doc.to_dict()["x"] == 1
3838

0 commit comments

Comments
 (0)