Skip to content

Commit

Permalink
Apply ruff/flake8-pytest-style rule PT014
Browse files Browse the repository at this point in the history
PT014 Duplicate of test case in `@pytest_mark.parametrize`
  • Loading branch information
DimitriPapadopoulos committed Aug 12, 2024
1 parent ba032a6 commit e288408
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions fsspec/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@ def test_common_prefix(paths, out):
(
(["/path1"], "/path2", False, ["/path2"]),
(["/path1"], "/path2", True, ["/path2/path1"]),
(["/path1"], "/path2", False, ["/path2"]),
(["/path1"], "/path2/", True, ["/path2/path1"]),
(["/path1"], ["/path2"], False, ["/path2"]),
(["/path1"], ["/path2"], True, ["/path2"]),
Expand All @@ -279,18 +278,6 @@ def test_common_prefix(paths, out):
True,
["/path2/more/path1", "/path2/more/path2"],
),
(
["/more/path1", "/more/path2"],
"/path2",
False,
["/path2/path1", "/path2/path2"],
),
(
["/more/path1", "/more/path2"],
"/path2",
True,
["/path2/more/path1", "/path2/more/path2"],
),
(
["/more/path1", "/more/path2"],
"/path2/",
Expand Down

0 comments on commit e288408

Please sign in to comment.