[pypy-svn] r63362 - pypy/trunk/pypy
hpk at codespeak.net
hpk at codespeak.net
Thu Mar 26 13:53:04 CET 2009
Author: hpk
Date: Thu Mar 26 13:53:04 2009
New Revision: 63362
Modified:
pypy/trunk/pypy/conftest.py
Log:
py.test now uses djang-like way of having dispatch on function names
Modified: pypy/trunk/pypy/conftest.py
==============================================================================
--- pypy/trunk/pypy/conftest.py (original)
+++ pypy/trunk/pypy/conftest.py Thu Mar 26 13:53:04 2009
@@ -43,7 +43,7 @@
default="host", callback=_set_platform,
help="set up tests to use specified platform as compile/run target")
- def pytest_funcarg_space(self, pyfuncitem):
+ def pytest_funcarg__space(self, pyfuncitem):
return gettestobjspace()
ConftestPlugin = PyPyTestPlugin
More information about the Pypy-commit
mailing list