# HG changeset patch # User Yuya Nishihara # Date 2016-02-07 07:02:41 # Node ID d7b0e81b84c2b2c6b66a7fd092ffe53e0cf32bd9 # Parent 81eee5786174cf97354b33d407719301a5d6a33e run-tests: drop redundant assignment to BINDIR We do it a few lines after. diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1936,8 +1936,7 @@ class TestRunner(object): self._pythondir = self._bindir else: self._installdir = os.path.join(self._hgtmp, b"install") - self._bindir = osenvironb[b"BINDIR"] = \ - os.path.join(self._installdir, b"bin") + self._bindir = os.path.join(self._installdir, b"bin") self._tmpbindir = self._bindir self._pythondir = os.path.join(self._installdir, b"lib", b"python")