From 3442d9896d4a54d32ad07657534a44fac4252c85 Mon Sep 17 00:00:00 2001 From: Doug Davis Date: Thu, 6 Jul 2023 16:59:15 -0500 Subject: [PATCH] DRY --- tests/test_optimize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_optimize.py b/tests/test_optimize.py index b78c4748..66108048 100644 --- a/tests/test_optimize.py +++ b/tests/test_optimize.py @@ -13,7 +13,7 @@ def test_multiple_computes(pq_points_dir) -> None: ds2 = dak.from_parquet(pq_points_dir, columns=["points"]) lists = [[[1, 2, 3], [4, 5]], [[], [0, 0, 0]]] - ds3 = dak.from_lists([[[1, 2, 3], [4, 5]], [[], [0, 0, 0]]]) + ds3 = dak.from_lists(lists) assert ds1.name != ds2.name things1 = dask.compute(ds1.points.x, ds2.points.y)