Skip to content

Commit 7b3c403

Browse files
committed
modified: pandas/tests/reshape/test_pivot.py
- Removed param names in favor of implicit args per feedback.
1 parent 1f87cc1 commit 7b3c403

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: pandas/tests/reshape/test_pivot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2585,7 +2585,7 @@ def test_pivot_table_values_as_two_params(self, index, columns, request):
25852585
]
25862586
expected = DataFrame(data=e_data, index=val_index, columns=cat_index)
25872587

2588-
tm.assert_frame_equal(left=result, right=expected)
2588+
tm.assert_frame_equal(result, expected)
25892589

25902590

25912591
class TestPivot:

0 commit comments

Comments
 (0)