From 2b3c6fb5828e65d3ca670eab3b3dd9683a2c62bd Mon Sep 17 00:00:00 2001 From: Ion Koutsouris <15728914+ion-elgreco@users.noreply.github.com> Date: Wed, 21 Aug 2024 14:30:40 +0200 Subject: [PATCH] fix: 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 )