Mercurial > hg > mercurial-source
changeset 28769:d7b0e81b84c2
run-tests: drop redundant assignment to BINDIR
We do it a few lines after.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sun, 07 Feb 2016 16:02:41 +0900 (2016-02-07) |
parents | 81eee5786174 |
children | a5f0c0aab2bb |
files | tests/run-tests.py |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1936,8 +1936,7 @@ 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")