From c882c75be22b3ab70e1f794a5d295ade80b5fc67 Mon Sep 17 00:00:00 2001 From: zhuwenxing Date: Wed, 21 Jun 2023 14:14:42 +0800 Subject: [PATCH] [test]skip index for empty collection (#25056) Signed-off-by: zhuwenxing --- .../deploy/testcases/test_action_first_deployment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python_client/deploy/testcases/test_action_first_deployment.py b/tests/python_client/deploy/testcases/test_action_first_deployment.py index 7ff1ced72..78fb0b41f 100644 --- a/tests/python_client/deploy/testcases/test_action_first_deployment.py +++ b/tests/python_client/deploy/testcases/test_action_first_deployment.py @@ -57,7 +57,7 @@ class TestActionFirstDeployment(TestDeployBase): is_binary = True collection_w = \ self.init_collection_general(insert_data=False, is_binary=is_binary, name=name, enable_dynamic_field=False, - with_json=False)[0] + with_json=False, is_index=False)[0] if collection_w.has_index(): index_names = [index.index_name for index in collection_w.indexes] for index_name in index_names: -- GitLab