Skip to content

Commit ee9eb01

Browse files
committed
ENH: gb.is_monotonic_increasing pandas-dev#17015 fix merge/rebase conflicts
2 parents ffb6200 + ea42697 commit ee9eb01

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pandas/tests/groupby/test_groupby.py

+1
Original file line numberDiff line numberDiff line change
@@ -2612,6 +2612,7 @@ def test_is_monotonic_increasing(self, in_vals, out_vals):
26122612
df = pd.DataFrame(source_dict)
26132613
result = df.groupby(['B']).C.is_monotonic_increasing()
26142614
expected = pd.Series(index=list('abcd'), name='B')
2615+
26152616
tm.assert_series_equal(result, expected)
26162617

26172618
# Also check result equal to manually taking x.is_monotonic_increasing.

0 commit comments

Comments
 (0)