# HG changeset patch # User Mads Kiilerich # Date 2011-11-16 02:45:14 # Node ID d01e08ea459d2097427c9b805aae3fa48925ebd4 # Parent 9ec8569e9a8be9076ce076ab088b7bb178371b18 tests: launch hghave with python interpreter without relying on hash-bang diff --git a/tests/test-filecache.py b/tests/test-filecache.py --- a/tests/test-filecache.py +++ b/tests/test-filecache.py @@ -1,6 +1,6 @@ import sys, os, subprocess -if subprocess.call(['%s/hghave' % os.environ['TESTDIR'], 'cacheable']): +if subprocess.call(['python', '%s/hghave' % os.environ['TESTDIR'], 'cacheable']): sys.exit(80) from mercurial import util, scmutil, extensions