Skip to content

Commit a47265b

Browse files
using keep fixture in more places (#32726)
1 parent 1881ac5 commit a47265b

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

pandas/tests/frame/methods/test_duplicated.py

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ def test_duplicated_nan_none(keep, expected):
6464
tm.assert_series_equal(result, expected)
6565

6666

67-
@pytest.mark.parametrize("keep", ["first", "last", False])
6867
@pytest.mark.parametrize("subset", [None, ["A", "B"], "A"])
6968
def test_duplicated_subset(subset, keep):
7069
df = DataFrame(

pandas/tests/indexes/multi/test_duplicates.py

-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,6 @@ def test_duplicated(idx_dup, keep, expected):
238238
tm.assert_numpy_array_equal(result, expected)
239239

240240

241-
@pytest.mark.parametrize("keep", ["first", "last", False])
242241
def test_duplicated_large(keep):
243242
# GH 9125
244243
n, k = 200, 5000

0 commit comments

Comments
 (0)