Skip to content

Commit

Permalink
missed original test
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzamora committed Jan 9, 2025
1 parent bc424cd commit e75a9bf
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions dask/dataframe/tests/test_groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -1841,10 +1841,7 @@ def test_std_object_dtype(func):
def test_std_columns_int():
df = pd.DataFrame({0: [5], 1: [5]})
ddf = dd.from_pandas(df, npartitions=2)
if PANDAS_GE_300:
assert_eq(ddf.groupby(ddf[0]).std(), df.groupby(df[0]).std())
else:
assert_eq(ddf.groupby(ddf[0]).std(), df.groupby(df[0].copy()).std())
assert_eq(ddf.groupby(ddf[0]).std(), df.groupby(df[0]).std())


def test_timeseries():
Expand Down

0 comments on commit e75a9bf

Please sign in to comment.