From 9947c4c532ea27579101371dbcc7ec07620ac3d4 Mon Sep 17 00:00:00 2001 From: Tommy Smith Date: Thu, 10 Apr 2025 14:48:10 +0100 Subject: [PATCH] Change test to use ONE rather than ALL to help avoid EC races in CI --- integration/test_collection_batch_delete.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/test_collection_batch_delete.py b/integration/test_collection_batch_delete.py index ae1cac064..105506af7 100644 --- a/integration/test_collection_batch_delete.py +++ b/integration/test_collection_batch_delete.py @@ -645,7 +645,7 @@ def test_delete_many_with_consistency_level( Property(name="text", data_type=DataType.TEXT), Property(name="int", data_type=DataType.INT), ], - ).with_consistency_level(ConsistencyLevel.ALL) + ).with_consistency_level(ConsistencyLevel.ONE) collection.data.insert_many( [ DataObject(properties={"int": 10}, uuid=UUID1),