[pypy-svn] r8008 - pypy/branch/src-pytest/pypy

arigo at codespeak.net arigo at codespeak.net
Thu Dec 30 09:54:59 CET 2004


Author: arigo
Date: Thu Dec 30 09:54:58 2004
New Revision: 8008

Modified:
   pypy/branch/src-pytest/pypy/conftest.py
Log:
Ouack!  Buggy line, wrong fix in the previous revision.  The app_xxx() global functions were 
accidentally run at inter-level!


Modified: pypy/branch/src-pytest/pypy/conftest.py
==============================================================================
--- pypy/branch/src-pytest/pypy/conftest.py	(original)
+++ pypy/branch/src-pytest/pypy/conftest.py	Thu Dec 30 09:54:58 2004
@@ -100,7 +100,7 @@
         name = target.func_globals.get('objspacename', None) 
         space = gettestobjspace(name) 
         func = app2interp_temp(target, target.__name__)
-        self.execute_in_space(space, target)
+        self.execute_in_space(space, func, space)
 
 class IntTestMethod(PyPyItem): 
     def execute(self, target, *args):



More information about the Pypy-commit mailing list