From 3bc1ba1bb23e64fc79253c60c75d495a81f31d3f Mon Sep 17 00:00:00 2001 From: yanliang567 <82361606+yanliang567@users.noreply.github.com> Date: Thu, 11 Nov 2021 15:04:52 +0800 Subject: [PATCH] [skip ci]Remove useless comments in testcase (#11616) Signed-off-by: yanliang567 --- tests/python_client/testcases/test_partition_20.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/python_client/testcases/test_partition_20.py b/tests/python_client/testcases/test_partition_20.py index ca4a1b723b..e24f01b9ee 100644 --- a/tests/python_client/testcases/test_partition_20.py +++ b/tests/python_client/testcases/test_partition_20.py @@ -507,7 +507,6 @@ class TestPartitionOperations(TestcaseBase): assert not collection_w.has_partition(partition_name)[0] @pytest.mark.tags(CaseLabel.L2) - # @pytest.mark.parametrize("flush", [True, False]) @pytest.mark.parametrize("data", [cf.gen_default_list_data(nb=3000)]) @pytest.mark.parametrize("index_param", cf.gen_simple_index()) def test_partition_drop_indexed_partition(self, data, index_param): @@ -516,7 +515,6 @@ class TestPartitionOperations(TestcaseBase): method: 1. create a partition 2. insert same data 3. create an index - 4. flush or not flush (remove flush step for issue # 5837) 5. drop the partition expected: drop successfully """ @@ -535,10 +533,6 @@ class TestPartitionOperations(TestcaseBase): # create index of collection collection_w.create_index(ct.default_float_vec_field_name, index_param) - # # flush - # if flush: - # self._connect().flush([collection_w.name]) - # drop partition partition_w.drop() assert not collection_w.has_partition(partition_name)[0]