From f36ac84e7958d08117d9dedb10d234592f87ffa5 Mon Sep 17 00:00:00 2001 From: binbin <83755740+binbinlv@users.noreply.github.com> Date: Wed, 29 Sep 2021 19:18:42 +0800 Subject: [PATCH] [skip ci] Add comments for collection case (#8863) Signed-off-by: Binbin Lv --- tests/python_client/testcases/test_collection.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/python_client/testcases/test_collection.py b/tests/python_client/testcases/test_collection.py index 8b34466f6d..6159533227 100644 --- a/tests/python_client/testcases/test_collection.py +++ b/tests/python_client/testcases/test_collection.py @@ -2731,6 +2731,12 @@ class TestLoadCollection: @pytest.mark.tags(CaseLabel.L2) def test_load_release_collection(self, connect, collection): + """ + target: test load, release non-exist collection + method: 1. load, release and drop collection + 2. load and release dropped collection + expected: raise exception + """ collection_name = gen_unique_str(uid_load) connect.create_collection(collection_name, cons.default_fields) connect.insert(collection_name, cons.default_entities)