From cb550bad9bb9e15edfdcef5dd361022448e0348f Mon Sep 17 00:00:00 2001 From: Tim Pansino Date: Wed, 26 Jul 2023 14:27:01 -0700 Subject: [PATCH] Allow better parallelization in firestore tests --- tests/datastore_firestore/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/datastore_firestore/test_client.py b/tests/datastore_firestore/test_client.py index c4bd872a0..e7c731f4a 100644 --- a/tests/datastore_firestore/test_client.py +++ b/tests/datastore_firestore/test_client.py @@ -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