Skip to content

Commit 1b83a46

Browse files
authored
TST: Fix some typo caused by myself previous pr (pandas-dev#52394)
1 parent 74adfd6 commit 1b83a46

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pandas/tests/groupby/aggregate/test_aggregate.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1520,8 +1520,8 @@ def test_agg_of_mode_list(test, constant):
15201520
tm.assert_frame_equal(result, expected)
15211521

15221522

1523-
def test__dataframe_groupy_agg_list_like_func_with_args():
1524-
# GH 50624
1523+
def test_dataframe_groupy_agg_list_like_func_with_args():
1524+
# GH#50624
15251525
df = DataFrame({"x": [1, 2, 3], "y": ["a", "b", "c"]})
15261526
gb = df.groupby("y")
15271527

@@ -1544,8 +1544,8 @@ def foo2(x, b=2, c=0):
15441544
tm.assert_frame_equal(result, expected)
15451545

15461546

1547-
def test__series_groupy_agg_list_like_func_with_args():
1548-
# GH 50624
1547+
def test_series_groupy_agg_list_like_func_with_args():
1548+
# GH#50624
15491549
s = Series([1, 2, 3])
15501550
sgb = s.groupby(s)
15511551

0 commit comments

Comments
 (0)