Skip to content

Commit

Permalink
fix: plugin path assert
Browse files Browse the repository at this point in the history
  • Loading branch information
NotPeopling2day committed Apr 4, 2024
1 parent 4c9ea14 commit 75020bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/functional/test_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def test_prepare_install(self):
f"ape-available>=0.{ape_version.minor},<0.{ape_version.minor + 1}",
"--quiet",
]
assert arguments[0].endswith("python")
assert "python" in arguments[0]
assert arguments[1:] == expected

def test_prepare_install_upgrade(self):
Expand All @@ -183,7 +183,7 @@ def test_prepare_install_upgrade(self):
f"ape-available>=0.{ape_version.minor},<0.{ape_version.minor + 1}",
"--quiet",
]
assert arguments[0].endswith("python")
assert "python" in arguments[0]
assert arguments[1:] == expected

@mark_specifiers_less_than_ape
Expand Down

0 comments on commit 75020bd

Please sign in to comment.