Skip to content

Commit

Permalink
Merge branch 'main' into feat/python312
Browse files Browse the repository at this point in the history
  • Loading branch information
fubuloubu authored Apr 9, 2024
2 parents 25f66a9 + f5b6c7a commit 7c96244
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 7c96244

Please sign in to comment.