From 50ca2d36dc5d213464839edfb0f4469a452d7daf Mon Sep 17 00:00:00 2001 From: binbin <83755740+binbinlv@users.noreply.github.com> Date: Thu, 16 Sep 2021 18:55:49 +0800 Subject: [PATCH] [skip ci] Add comments for test case (#8102) Signed-off-by: Binbin Lv --- tests/python_client/testcases/test_index.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/python_client/testcases/test_index.py b/tests/python_client/testcases/test_index.py index eb4d17d442..c0d9d80c97 100644 --- a/tests/python_client/testcases/test_index.py +++ b/tests/python_client/testcases/test_index.py @@ -1168,6 +1168,11 @@ class TestIndexInvalid(object): @pytest.mark.tags(CaseLabel.L2) def test_drop_index_with_invalid_collection_name(self, connect, get_collection_name): + """ + target: test drop index interface for invalid scenario + method: drop index with invalid collection name + expected: raise exception + """ collection_name = get_collection_name with pytest.raises(Exception) as e: connect.drop_index(collection_name)