[skip ci] Add comments for test case (#8753)

Signed-off-by: Binbin Lv <binbin.lv@zilliz.com>
pull/8756/head
binbin 2021-09-28 15:36:03 +08:00 committed by GitHub
parent d3d630ef67
commit 4cb6355173
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -3220,6 +3220,11 @@ class TestLoadPartitionInvalid(object):
@pytest.mark.tags(CaseLabel.L2)
def test_release_partition_with_invalid_partition_name(self, connect, collection, get_partition_name):
"""
target: test release invalid partition
method: release partition with invalid partition name
expected: raise exception
"""
partition_name = get_partition_name
with pytest.raises(Exception) as e:
connect.load_partitions(collection, [partition_name])