mirror of
https://github.com/python/cpython.git
synced 2026-01-06 07:22:09 +00:00
gh-119070: Update test_shebang_executable_extension to always use non-installed version (GH-119846)
This commit is contained in:
parent
a8f1152b70
commit
5c48eb0cc6
1 changed files with 3 additions and 3 deletions
|
|
@ -766,9 +766,9 @@ def test_shebang_command_in_venv(self):
|
|||
self.assertEqual(data["stdout"].strip(), f"{quote(exe)} arg1 {quote(script)}")
|
||||
|
||||
def test_shebang_executable_extension(self):
|
||||
with self.script('#! /usr/bin/env python3.12') as script:
|
||||
data = self.run_py([script])
|
||||
expect = "# Search PATH for python3.12.exe"
|
||||
with self.script('#! /usr/bin/env python3.99') as script:
|
||||
data = self.run_py([script], expect_returncode=103)
|
||||
expect = "# Search PATH for python3.99.exe"
|
||||
actual = [line.strip() for line in data["stderr"].splitlines()
|
||||
if line.startswith("# Search PATH")]
|
||||
self.assertEqual([expect], actual)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue