From 85d1d1472bd65d2d191724bd86a7e08d2d72a54c Mon Sep 17 00:00:00 2001 From: binbin <83755740+binbinlv@users.noreply.github.com> Date: Thu, 30 Sep 2021 17:04:12 +0800 Subject: [PATCH] [skip ci] Add test comments (#8952) Signed-off-by: Binbin Lv --- tests/python_client/testcases/test_collection.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/python_client/testcases/test_collection.py b/tests/python_client/testcases/test_collection.py index 6159533227..1463b18152 100644 --- a/tests/python_client/testcases/test_collection.py +++ b/tests/python_client/testcases/test_collection.py @@ -2398,6 +2398,11 @@ class TestDropCollectionInvalid(object): @pytest.mark.tags(CaseLabel.L2) def test_drop_collection_with_invalid_collection_name(self, connect, get_collection_name): + """ + target: test drop invalid collection + method: drop collection with invalid collection name + expected: raise exception + """ collection_name = get_collection_name with pytest.raises(Exception) as e: connect.has_collection(collection_name)