Skip to content

Commit 0280f6b

Browse files
committed
TST: add same parametrization as a list
1 parent adcf2eb commit 0280f6b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pandas/tests/frame/methods/test_sort_index.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,10 @@ def test_sort_index_use_inf_as_na(self):
787787

788788
@pytest.mark.parametrize(
789789
"ascending",
790-
[(True, False)],
790+
[
791+
(True, False),
792+
[True, False]
793+
],
791794
)
792795
def test_sort_index_ascending_tuple(self, ascending):
793796
df = DataFrame(

0 commit comments

Comments
 (0)