[pypy-svn] r15941 - pypy/dist/pypy/module/_sre/test

nik at codespeak.net nik at codespeak.net
Wed Aug 10 21:36:22 CEST 2005


Author: nik
Date: Wed Aug 10 21:36:21 2005
New Revision: 15941

Modified:
   pypy/dist/pypy/module/_sre/test/test_app_sre.py
Log:
oops, skip fixture for some tests was wrong.


Modified: pypy/dist/pypy/module/_sre/test/test_app_sre.py
==============================================================================
--- pypy/dist/pypy/module/_sre/test/test_app_sre.py	(original)
+++ pypy/dist/pypy/module/_sre/test/test_app_sre.py	Wed Aug 10 21:36:21 2005
@@ -234,9 +234,8 @@
 
 class AppTestGetlower:
 
-    setup_class = skip_if_faked
-
     def setup_class(cls):
+        skip_if_faked(cls)
         # This imports support_test_sre as the global "s"
         app2interp_temp(app_init_globals_hack)(cls.space)
 
@@ -490,9 +489,8 @@
 
 class AppTestOpcodes:
 
-    setup_class = skip_if_faked
-
     def setup_class(cls):
+        skip_if_faked(cls)
         # This imports support_test_sre as the global "s"
         app2interp_temp(app_init_globals_hack)(cls.space)
 



More information about the Pypy-commit mailing list