Skip to content

Commit 1f87cc1

Browse files
committed
modified: pandas/tests/reshape/test_pivot.py
- Removed param names and updated `argnames` arg per feedback in parametrized marker.
1 parent fd1ec04 commit 1f87cc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -2555,8 +2555,8 @@ def test_pivot_table_index_and_column_keys_with_nan(self, dropna):
25552555
tm.assert_frame_equal(left=result, right=expected)
25562556

25572557
@pytest.mark.parametrize(
2558-
argnames=["index", "columns"],
2559-
argvalues=[("Category", "Value"), ("Value", "Category")],
2558+
"index, columns",
2559+
[("Category", "Value"), ("Value", "Category")],
25602560
ids=["values-and-columns", "values-and-index"],
25612561
)
25622562
def test_pivot_table_values_as_two_params(self, index, columns, request):

0 commit comments

Comments
 (0)