From 06fa16506e6ada2b3ca3e307622ffda225ff9039 Mon Sep 17 00:00:00 2001 From: Anthony Mahanna Date: Tue, 22 Aug 2023 09:03:11 -0400 Subject: [PATCH] fix: auto-gen collection name --- tests/test_document.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_document.py b/tests/test_document.py index 91b75d2e..129ddeb1 100644 --- a/tests/test_document.py +++ b/tests/test_document.py @@ -1433,7 +1433,7 @@ def test_document_find_in_box(db, col, bad_col, geo, cluster): assert clean_doc(result) in [[doc1], [doc2], [doc3], [doc4]] # Test find_in_box with missing index in collection - empty_col = db.create_collection("empty_collection") + empty_col = db.create_collection(generate_col_name()) with assert_raises(IndexMissingError) as err: empty_col.find_in_box( latitude1=0,