We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e3de8c commit b405140Copy full SHA for b405140
pandas/tests/groupby/test_groupby.py
@@ -43,7 +43,7 @@ def test_group_by_copy():
43
44
grp_by_same_value = df.groupby(["age"]).apply(lambda group: group)
45
grp_by_copy = df.groupby(["age"]).apply(lambda group: group.copy())
46
- assert grp_by_same_value == grp_by_copy
+ tm.assert_frame_equal(grp_by_same_value, grp_by_copy)
47
48
49
def test_repr():
0 commit comments