https://github.com/python/cpython/commit/5c48eb0cc6c3e84aafda0a734a05ecec14fc0ccf
commit: 5c48eb0cc6c3e84aafda0a734a05ecec14fc0ccf
branch: main
author: Steve Dower <[email protected]>
committer: encukou <[email protected]>
date: 2024-06-04T10:17:45+02:00
summary:

gh-119070: Update test_shebang_executable_extension to always use non-installed 
version (GH-119846)

files:
M Lib/test/test_launcher.py

diff --git a/Lib/test/test_launcher.py b/Lib/test/test_launcher.py
index 6d358ac6f16a27..58baae25df3df7 100644
--- a/Lib/test/test_launcher.py
+++ b/Lib/test/test_launcher.py
@@ -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)

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to