diff --git a/tests/python_client/testcases/entity/test_insert.py b/tests/python_client/testcases/entity/test_insert.py index 264b71f9ba..23d092fd15 100644 --- a/tests/python_client/testcases/entity/test_insert.py +++ b/tests/python_client/testcases/entity/test_insert.py @@ -1042,6 +1042,11 @@ class TestInsertInvalid(object): @pytest.mark.tags(CaseLabel.L2) def test_insert_with_invalid_collection_name(self, connect, get_collection_name): + """ + target: test insert with invalid scenario + method: insert with invalid collection name + expected: raise exception + """ collection_name = get_collection_name with pytest.raises(Exception): connect.insert(collection_name, default_entity)