py3: add b'' prefix at one place in run-tests.py
authorPulkit Goyal <pulkit@yandex-team.ru>
Wed, 05 Jun 2019 22:44:38 +0300
changeset 42444 ae3f862cbb3d
parent 42443 027f1567f97f
child 42445 6ed04139ed37
py3: add b'' prefix at one place in run-tests.py #skip-blame because just b'' prefix Differential Revision: https://phab.mercurial-scm.org/D6482
tests/run-tests.py
--- a/tests/run-tests.py	Thu Jun 06 10:07:14 2019 -0700
+++ b/tests/run-tests.py	Wed Jun 05 22:44:38 2019 +0300
@@ -3182,7 +3182,7 @@
         assert os.path.dirname(self._bindir) == self._installdir
         assert self._hgroot, 'must be called after _installhg()'
         cmd = (b'"%(make)s" clean install PREFIX="%(prefix)s"'
-               % {b'make': 'make',  # TODO: switch by option or environment?
+               % {b'make': b'make',  # TODO: switch by option or environment?
                   b'prefix': self._installdir})
         cwd = os.path.join(self._hgroot, b'contrib', b'chg')
         vlog("# Running", cmd)