tests: remove Python 3 conditionalizing from variables
authorGregory Szorc <gregory.szorc@gmail.com>
Sun, 20 Feb 2022 13:23:21 -0700
changeset 48862 2336e79a119c
parent 48861 7265e5b1d18e
child 48863 c76255cde807
tests: remove Python 3 conditionalizing from variables Differential Revision: https://phab.mercurial-scm.org/D12240
tests/run-tests.py
--- a/tests/run-tests.py	Sun Feb 20 13:22:12 2022 -0700
+++ b/tests/run-tests.py	Sun Feb 20 13:23:21 2022 -0700
@@ -3675,12 +3675,9 @@
             setup_opts = b"--no-rust"
 
         # Run installer in hg root
-        script = os.path.realpath(sys.argv[0])
-        exe = sysexecutable
-        if PYTHON3:
-            compiler = _sys2bytes(compiler)
-            script = _sys2bytes(script)
-            exe = _sys2bytes(exe)
+        compiler = _sys2bytes(compiler)
+        script = _sys2bytes(os.path.realpath(sys.argv[0]))
+        exe = _sys2bytes(sysexecutable)
         hgroot = os.path.dirname(os.path.dirname(script))
         self._hgroot = hgroot
         os.chdir(hgroot)