From 96ac08d9fba8b877700bbabd427e087a0c813ca3 Mon Sep 17 00:00:00 2001 From: binbin <83755740+binbinlv@users.noreply.github.com> Date: Sat, 30 Oct 2021 11:34:42 +0800 Subject: [PATCH] [skip ci] Improve test comments (#10941) Signed-off-by: Binbin Lv --- tests/python_client/testcases/test_index.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/python_client/testcases/test_index.py b/tests/python_client/testcases/test_index.py index f6f7abfed0..1f947d3310 100644 --- a/tests/python_client/testcases/test_index.py +++ b/tests/python_client/testcases/test_index.py @@ -539,8 +539,8 @@ class TestIndexBase: def test_create_index_collection_not_existed(self, connect): """ target: test create index interface when collection name not existed - method: create collection and add entities in it, create index - , make sure the collection name not in index + method: create collection and add entities in it, create index, + make sure the collection name not in index expected: create index failed """ collection_name = gen_unique_str(uid) @@ -740,8 +740,8 @@ class TestIndexBase: def test_create_index_collection_not_existed_ip(self, connect, collection): """ target: test create index interface when collection name not existed - method: create collection and add entities in it, create index - , make sure the collection name not in index + method: create collection and add entities in it, create index, + make sure the collection name not in index expected: return code not equals to 0, create index failed """ collection_name = gen_unique_str(uid) @@ -853,8 +853,8 @@ class TestIndexBase: def test_drop_index_collection_not_existed(self, connect): """ target: test drop index interface when collection name not existed - method: create collection and add entities in it, create index - , make sure the collection name not in index, and then drop it + method: create collection and add entities in it, create index, + make sure the collection name not in index, and then drop it expected: return code not equals to 0, drop index failed """ collection_name = gen_unique_str(uid)