Skip to content

Commit 7897b31

Browse files
committed
updating based on feedback
1 parent e91671b commit 7897b31

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

tests/test_frame.py

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -368,18 +368,7 @@ def test_types_dropna() -> None:
368368
res3: None = df.dropna(axis=0, how="all", subset=["col1"], inplace=True)
369369

370370

371-
@pytest.mark.parametrize(
372-
"drop_arg",
373-
[
374-
{"AAA"}, # set
375-
["AAA"], # list
376-
("AAA",), # tuple
377-
{"AAA": None}, # dict
378-
"AAA", # str
379-
]
380-
)
381-
def test_types_drop_duplicates(drop_arg) -> None:
382-
371+
def test_types_drop_duplicates() -> None:
383372
# GH#59237
384373
df = pd.DataFrame(
385374
{

0 commit comments

Comments
 (0)