From ace352aa954dffdcd9c65cf54272cd5a0659e88e Mon Sep 17 00:00:00 2001 From: Jiquan Long Date: Thu, 28 Sep 2023 18:15:27 +0800 Subject: [PATCH] Fix case test_partition_key_on_multi_numpy_files (#27421) Signed-off-by: longjiquan --- tests/python_client/testcases/test_bulk_insert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python_client/testcases/test_bulk_insert.py b/tests/python_client/testcases/test_bulk_insert.py index f9f1d3ac70..fed9f4b077 100644 --- a/tests/python_client/testcases/test_bulk_insert.py +++ b/tests/python_client/testcases/test_bulk_insert.py @@ -903,7 +903,7 @@ class TestBulkInsert(TestcaseBaseBulkInsert): ) task_ids.append(task_id) success, states = self.utility_wrap.wait_for_bulk_insert_tasks_completed( - task_ids=[task_id], timeout=90 + task_ids=task_ids, timeout=90 ) log.info(f"bulk insert state:{success}")