Skip to content

Commit caa98b8

Browse files
authored
Update tests/test_properties.py
1 parent 0b9fafc commit caa98b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_properties.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,5 +318,5 @@ def test_topk_max_min(data, array):
318318
actual, _ = groupby_reduce(a, by, func="topk", finalize_kwargs={"k": k})
319319
# TODO: do numbagg, flox
320320
# FIXME: this is wrong, remove this compute, add a property test checking dask vs numpy
321-
expected, _ = groupby_reduce(dask.compute(a)[0], by, func=npfunc, engine="numpy")
321+
expected, _ = groupby_reduce(a, by, func=npfunc, engine="numpy")
322322
assert_equal(actual, expected[np.newaxis, :])

0 commit comments

Comments
 (0)