From f075b0b88aa6951abea0269bc85d2c91cf36bd71 Mon Sep 17 00:00:00 2001 From: binbin <83755740+binbinlv@users.noreply.github.com> Date: Sat, 18 Sep 2021 11:27:50 +0800 Subject: [PATCH] [skip ci] Add comments for collection test case (#8196) 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 080944bb9f..ae3e5b079e 100644 --- a/tests/python_client/testcases/test_collection.py +++ b/tests/python_client/testcases/test_collection.py @@ -3045,6 +3045,11 @@ class TestLoadPartition: @pytest.mark.tags(CaseLabel.L0) def test_load_partition_not_existed(self, connect, collection): + """ + target: test load partition for invalid scenario + method: load not existed partition + expected: raise exception and report the error + """ partition_name = gen_unique_str(uid_load) try: connect.load_partitions(collection, [partition_name])