Skip to content

Commit

Permalink
Force old default for group_keys
Browse files Browse the repository at this point in the history
  • Loading branch information
caneff committed Sep 20, 2023
1 parent a722740 commit 99f375f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdks/python/apache_beam/dataframe/frames_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1827,8 +1827,8 @@ def test_groupby_apply_preserves_column_order(self):
df = GROUPBY_DF

self._run_test(
lambda df: df[['foo', 'group', 'bar']].groupby('group').apply(
lambda x: x),
lambda df: df[['foo', 'group', 'bar']].groupby(
'group', group_keys=False).apply(lambda x: x),
df)

def test_groupby_transform(self):
Expand Down

0 comments on commit 99f375f

Please sign in to comment.