Skip to content

Commit e5d8880

Browse files
committed
fixup! REGR: Allow positional arguments in DataFrame.agg
1 parent 99998c6 commit e5d8880

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/frame/apply/test_frame_apply.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1464,7 +1464,7 @@ def test_agg_cython_table_raises(self, df, func, expected, axis):
14641464
df.agg(func, axis=axis)
14651465

14661466
@pytest.mark.parametrize("axis", [0, 1])
1467-
@pytest.mark.parameterize(
1467+
@pytest.mark.parametrize(
14681468
"args, kwargs",
14691469
[
14701470
((1, 2, 3), {}),

0 commit comments

Comments
 (0)