# HG changeset patch # User Gregory Szorc # Date 1645388601 25200 # Node ID 2336e79a119c3eca79257a66a6c93b3cb6a79373 # Parent 7265e5b1d18e78944ee0bf99e7dd5d5504883d8f tests: remove Python 3 conditionalizing from variables Differential Revision: https://phab.mercurial-scm.org/D12240 diff -r 7265e5b1d18e -r 2336e79a119c 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)