Skip to content

Commit

Permalink
update test_groupby_grouper_dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzamora committed May 23, 2024
1 parent 484fc3f commit a6a8686
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dask/dataframe/tests/test_groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -2991,9 +2991,8 @@ def test_groupby_grouper_dispatch(key):
pd_grouper = grouper_dispatch(pdf)(key=key)
gd_grouper = grouper_dispatch(gdf)(key=key)

# cuDF's numeric behavior aligns with numeric_only=True
expect = pdf.groupby(pd_grouper).sum(numeric_only=True)
got = gdf.groupby(gd_grouper).sum()
got = gdf.groupby(gd_grouper).sum(numeric_only=True)

assert_eq(expect, got)

Expand Down

0 comments on commit a6a8686

Please sign in to comment.