[pypy-svn] r44283 - pypy/dist/pypy/lang/js/test

santagada at codespeak.net santagada at codespeak.net
Fri Jun 15 14:24:15 CEST 2007


Author: santagada
Date: Fri Jun 15 14:24:14 2007
New Revision: 44283

Modified:
   pypy/dist/pypy/lang/js/test/test_interactive.py
Log:
fix the js_interactive location

Modified: pypy/dist/pypy/lang/js/test/test_interactive.py
==============================================================================
--- pypy/dist/pypy/lang/js/test/test_interactive.py	(original)
+++ pypy/dist/pypy/lang/js/test/test_interactive.py	Fri Jun 15 14:24:14 2007
@@ -19,7 +19,7 @@
         return child
 
     def spawn(self, argv):
-        return self._spawn('./js_interactive.py', argv)
+        return self._spawn(str(py.magic.autopath().dirpath().dirpath().join('js_interactive.py')), argv)
     
     def prompt_send(self, message):
         self.child.expect('js-pypy>')



More information about the Pypy-commit mailing list