Skip to content

Commit

Permalink
fix: auto-gen collection name
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Aug 22, 2023
1 parent 0b81f0f commit 06fa165
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_document.py
Expand Up @@ -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,
Expand Down

0 comments on commit 06fa165

Please sign in to comment.