Skip to content

Commit bf877a5

Browse files
committed
modified: pandas/tests/reshape/test_pivot_multilevel.py
- Removed param names and updated arg for `argnames` in parametrized marker per feedback.
1 parent 7b3c403 commit bf877a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -253,8 +253,8 @@ def test_pivot_df_multiindex_index_none():
253253

254254

255255
@pytest.mark.parametrize(
256-
argnames=["index", "columns"],
257-
argvalues=[("index", ["col", "value"]), (["index", "value"], "col")],
256+
"index, columns",
257+
[("index", ["col", "value"]), (["index", "value"], "col")],
258258
ids=["values-and-columns", "values-and-index"],
259259
)
260260
def test_pivot_table_multiindex_values_as_two_params(index, columns, request):

0 commit comments

Comments
 (0)