Skip to content

Commit 21d65ca

Browse files
committed
TEST: Unnecessary paramtrize
1 parent 6bb3015 commit 21d65ca

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pandas/tests/reductions/test_reductions.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -550,8 +550,7 @@ def test_min_max_categorical(self):
550550
assert ci.min() == "c"
551551
assert ci.max() == "b"
552552

553-
@pytest.mark.parametrize("op", ["any", "all"])
554-
def test_numpy_any_all(self, op):
553+
def test_numpy_any_all(self):
555554
idx = Index([0, 1, 2])
556555
assert not np.all(idx)
557556
assert np.any(idx)

0 commit comments

Comments
 (0)