From ca3bf67e72f8984571e714aab63477235b3ea82e Mon Sep 17 00:00:00 2001 From: ThreadDao Date: Tue, 5 Oct 2021 21:34:24 +0800 Subject: [PATCH] [skip ci] Remove argument equal to default (#9287) Signed-off-by: ThreadDao --- tests/python_client/testcases/test_utility.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/python_client/testcases/test_utility.py b/tests/python_client/testcases/test_utility.py index 712d8712d9..7798913a99 100644 --- a/tests/python_client/testcases/test_utility.py +++ b/tests/python_client/testcases/test_utility.py @@ -201,7 +201,7 @@ class TestUtilityParams(TestcaseBase): """ self._connect() c_name = cf.gen_unique_str(prefix) - df = cf.gen_default_dataframe_data(nb=ct.default_nb) + df = cf.gen_default_dataframe_data() self.collection_wrap.construct_from_dataframe(c_name, df, primary_field=ct.default_int64_field_name) self.collection_wrap.load() error = {ct.err_code: 1, ct.err_msg: "Invalid collection name: {}".format(invalid_c_name)} @@ -216,7 +216,7 @@ class TestUtilityParams(TestcaseBase): """ self._connect() c_name = cf.gen_unique_str(prefix) - df = cf.gen_default_dataframe_data(nb=ct.default_nb) + df = cf.gen_default_dataframe_data() self.collection_wrap.construct_from_dataframe(c_name, df, primary_field=ct.default_int64_field_name) self.collection_wrap.load() error = {ct.err_code: 1, ct.err_msg: "describe collection failed: can't find collection"}