From 0441ca54065b3100e33a02edd4cc42eae74377fa Mon Sep 17 00:00:00 2001 From: Ion Koutsouris <15728914+ion-elgreco@users.noreply.github.com> Date: Thu, 22 Aug 2024 08:03:09 +0200 Subject: [PATCH] fix: optimize call in benchmark --- python/tests/test_benchmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tests/test_benchmark.py b/python/tests/test_benchmark.py index bfcdd3f310..e869335e87 100644 --- a/python/tests/test_benchmark.py +++ b/python/tests/test_benchmark.py @@ -95,7 +95,7 @@ def setup(): return (dt,), dict(max_concurrent_tasks=max_tasks) def func(dt, max_concurrent_tasks): - return dt.optimize( + return dt.optimize.compact( max_concurrent_tasks=max_concurrent_tasks, target_size=1024 * 1024 * 1024 )