[pypy-svn] rev 1108 - pypy/trunk/src/pypy/objspace/ann/test

mwh at codespeak.net mwh at codespeak.net
Mon Jul 7 18:35:39 CEST 2003


Author: mwh
Date: Mon Jul  7 18:35:39 2003
New Revision: 1108

Modified:
   pypy/trunk/src/pypy/objspace/ann/test/test_objspace.py
Log:
ask for an annotation object space from the test framework (means test gets 
skipped when testing other objspaces)


Modified: pypy/trunk/src/pypy/objspace/ann/test/test_objspace.py
==============================================================================
--- pypy/trunk/src/pypy/objspace/ann/test/test_objspace.py	(original)
+++ pypy/trunk/src/pypy/objspace/ann/test/test_objspace.py	Mon Jul  7 18:35:39 2003
@@ -21,7 +21,7 @@
         return self.space.call(w_func, w_args, w_kwds)
 
     def setUp(self):
-        self.space = AnnotationObjSpace()
+        self.space = test.objspace('ann')
 
     def test_any2any(self):
         x = self.codetest("def f(i):\n"


More information about the Pypy-commit mailing list