Skip to content

Commit

Permalink
DRY
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasdavis committed Jul 6, 2023
1 parent bbf7d28 commit 3442d98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_optimize.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 3442d98

Please sign in to comment.