Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
phofl committed Dec 17, 2024
1 parent 71469c3 commit 8642fea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dask/tests/test_distributed.py
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ async def test_futures_in_subgraphs(c, s, a, b):

ddf = ddf[ddf.uid.isin(range(29))].persist()
ddf["day"] = ddf.enter_time.dt.day_name()
ddf = await c.submit(dd.categorize, ddf, columns=["day"], index=False)
ddf = await c.submit(ddf.categorize, columns=["day"], index=False)


@gen_cluster(client=True)
Expand Down

0 comments on commit 8642fea

Please sign in to comment.