Skip to content

Commit

Permalink
Correct test_specifier_filter method argument order
Browse files Browse the repository at this point in the history
  • Loading branch information
notatallshaw committed Feb 14, 2025
1 parent 5c6324a commit 8bc9a3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_specifiers.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ def test_specifiers_prereleases(self, specifier, version, expected):
],
)
def test_specifier_filter(
self, specifier_prereleases, specifier, prereleases, input, expected
self, specifier, specifier_prereleases, prereleases, input, expected
):
if specifier_prereleases is None:
spec = Specifier(specifier)
Expand Down Expand Up @@ -777,7 +777,7 @@ def test_specifier_contains_installed_prereleases(self):
],
)
def test_specifier_filter(
self, specifier_prereleases, specifier, prereleases, input, expected
self, specifier, specifier_prereleases, prereleases, input, expected
):
if specifier_prereleases is None:
spec = SpecifierSet(specifier)
Expand Down

0 comments on commit 8bc9a3b

Please sign in to comment.