From patchwork Tue Dec 8 04:45:15 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D9542: run-tests: fix a typo in an attribute name From: phabricator X-Patchwork-Id: 47829 Message-Id: To: Phabricator Cc: mercurial-devel@mercurial-scm.org Date: Tue, 8 Dec 2020 04:45:15 +0000 mharbison72 created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REVISION SUMMARY At least, I assume it's a typo. Nothing else uses it, but `_tmpbindir` is used. REPOSITORY rHG Mercurial BRANCH default REVISION DETAIL https://phab.mercurial-scm.org/D9542 AFFECTED FILES tests/run-tests.py CHANGE DETAILS To: mharbison72, #hg-reviewers Cc: mercurial-patches, mercurial-devel diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -2948,7 +2948,7 @@ self._hgtmp = None self._installdir = None self._bindir = None - self._tmpbinddir = None + self._tmpbindir = None self._pythondir = None self._coveragefile = None self._createdfiles = []