run-tests: avoid calculating _testdir again

Differential Revision: https://phab.mercurial-scm.org/D1574
This commit is contained in:
Martin von Zweigbergk 2017-12-01 12:28:05 -08:00
parent ca0a21ad2a
commit 96e10ab37b

View File

@ -979,8 +979,7 @@ class Test(unittest.TestCase):
]
r.append((self._escapepath(self._testtmp), b'$TESTTMP'))
testdir = os.path.dirname(self.path)
replacementfile = os.path.join(testdir, b'common-pattern.py')
replacementfile = os.path.join(self._testdir, b'common-pattern.py')
if os.path.exists(replacementfile):
data = {}