Skip to content

Commit

Permalink
Fixing test
Browse files Browse the repository at this point in the history
  • Loading branch information
apetenchea committed Oct 30, 2024
1 parent 1b3dad9 commit e444373
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ async def test_collection_index(doc_col, bad_col):
assert idx2.id is not None
assert idx2.id == f"{doc_col.name}/{idx2.numeric_id}"
assert idx2.type == "inverted"
assert idx2["fields"] == [{"name": "attr1", "cache": True}]
assert idx2["fields"][0]["name"] == "attr1"
assert idx2.name == "idx2"
assert idx2.include_all_fields is True
assert idx2.analyzer == "identity"
Expand Down

0 comments on commit e444373

Please sign in to comment.