From bf44b5666748bb0636414d6a235e3c63f6d7322a Mon Sep 17 00:00:00 2001 From: Vladislav Date: Mon, 5 Jun 2023 15:38:40 +0300 Subject: [PATCH] fix: fix search_test after incorrect rebase (#1356) --- tests/dragonfly/search_test.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/dragonfly/search_test.py b/tests/dragonfly/search_test.py index a1b698281..e9f7f6aa9 100644 --- a/tests/dragonfly/search_test.py +++ b/tests/dragonfly/search_test.py @@ -63,8 +63,6 @@ async def test_basic(async_client, index_type): await index_test_data(async_client, index_type) await i1.create_index(TEST_DATA_SCHEMA, definition=IndexDefinition(index_type=index_type)) - await i1.create_index(TEST_DATA_SCHEMA, definition=IndexDefinition(index_type=index_type)) - res = await i1.search("article") assert contains_test_data(res, [0, 1])