Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 02dfef6

Browse files
committedApr 19, 2025·
modified: pandas/tests/reshape/test_pivot_multilevel.py
- Removed param names in favor of implicit args per feedback.
1 parent e798e73 commit 02dfef6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎pandas/tests/reshape/test_pivot_multilevel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,4 +291,4 @@ def test_pivot_table_multiindex_values_as_two_params(index, columns, request):
291291
e_cols = Index(data=[1, 2], name="col")
292292

293293
expected = pd.DataFrame(data=e_data, index=e_index, columns=e_cols)
294-
tm.assert_frame_equal(left=result, right=expected)
294+
tm.assert_frame_equal(result, expected)

0 commit comments

Comments
 (0)
Please sign in to comment.