Skip to content

Commit

Permalink
test: remove unfinished test
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 committed Sep 5, 2023
1 parent 398823d commit 9bdd53b
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions tests/test_pickle.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,3 @@ def test_pickle_ak_array():

def identity(x):
return x


def test_worker_transfer():
array = ak.Array([[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12]])[[0, 2]]
darray = dak.from_awkward(array, 1)
darray_result = darray.map_partitions(identity)

first, second = dask.compute(darray, darray_result)

assert ak.almost_equal(first, second)
assert first.layout.form == second.layout.form

0 comments on commit 9bdd53b

Please sign in to comment.