From d7ebd448baee1c4576d6e5172e9918b741d9da10 Mon Sep 17 00:00:00 2001 From: binbin <83755740+binbinlv@users.noreply.github.com> Date: Tue, 28 Sep 2021 19:18:03 +0800 Subject: [PATCH] [skip ci] Improve test comments (#8754) Signed-off-by: Binbin Lv --- tests/python_client/testcases/test_insert_20.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/python_client/testcases/test_insert_20.py b/tests/python_client/testcases/test_insert_20.py index f7eeca4ead..b1fa6d1eb8 100644 --- a/tests/python_client/testcases/test_insert_20.py +++ b/tests/python_client/testcases/test_insert_20.py @@ -216,7 +216,7 @@ class TestInsertParams(TestcaseBase): assert collection_w.num_entities == 1 @pytest.mark.tags(CaseLabel.L1) - @pytest.mark.xfail(reason="exception not MilvusException") + @pytest.mark.xfail(reason="exception not Milvus Exception") def test_insert_dim_not_match(self): """ target: test insert with not match dim @@ -232,7 +232,7 @@ class TestInsertParams(TestcaseBase): collection_w.insert(data=df, check_task=CheckTasks.err_res, check_items=error) @pytest.mark.tags(CaseLabel.L1) - @pytest.mark.xfail(reason="exception not MilvusException") + @pytest.mark.xfail(reason="exception not Milvus Exception") def test_insert_binary_dim_not_match(self): """ target: test insert binary with dim not match @@ -299,7 +299,7 @@ class TestInsertParams(TestcaseBase): """ target: test insert vector value less than other method: vec field value less than int field - expected: todo + expected: raise exception """ c_name = cf.gen_unique_str(prefix) collection_w = self.init_collection_wrap(name=c_name) @@ -316,7 +316,7 @@ class TestInsertParams(TestcaseBase): """ target: test insert with fields more method: field more than schema fields - expected: todo + expected: raise exception """ c_name = cf.gen_unique_str(prefix) collection_w = self.init_collection_wrap(name=c_name)