# HG changeset patch # User Mads Kiilerich # Date 1321411514 -3600 # Node ID d01e08ea459d2097427c9b805aae3fa48925ebd4 # Parent 9ec8569e9a8be9076ce076ab088b7bb178371b18 tests: launch hghave with python interpreter without relying on hash-bang diff -r 9ec8569e9a8b -r d01e08ea459d tests/test-filecache.py --- a/tests/test-filecache.py Wed Nov 16 03:45:14 2011 +0100 +++ b/tests/test-filecache.py Wed Nov 16 03:45:14 2011 +0100 @@ -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