Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion test/asynchronous/test_index_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,6 @@ async def test_case_3(self):
# Create a new search index on ``self.coll0``.
model = {"name": _NAME, "definition": {"mappings": {"dynamic": False}}}
resp = await self.coll0.create_search_index(model)
self.addAsyncCleanup(self.drop_and_wait, self.coll0, _NAME)

Comment on lines 213 to 216
# Assert that the command returns the name of the index: ``"test-search-index"``.
self.assertEqual(resp, "test-search-index")
Expand Down
1 change: 0 additions & 1 deletion test/test_index_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,6 @@ def test_case_3(self):
# Create a new search index on ``self.coll0``.
model = {"name": _NAME, "definition": {"mappings": {"dynamic": False}}}
resp = self.coll0.create_search_index(model)
self.addCleanup(self.drop_and_wait, self.coll0, _NAME)

# Assert that the command returns the name of the index: ``"test-search-index"``.
self.assertEqual(resp, "test-search-index")
Expand Down
Loading