[pypy-svn] r34720 - pypy/dist/pypy/module/pypymagic/test

arigo at codespeak.net arigo at codespeak.net
Fri Nov 17 20:49:10 CET 2006


Author: arigo
Date: Fri Nov 17 20:49:08 2006
New Revision: 34720

Modified:
   pypy/dist/pypy/module/pypymagic/test/test_special.py
Log:
A test file... that is not tested?  Obscure.


Modified: pypy/dist/pypy/module/pypymagic/test/test_special.py
==============================================================================
--- pypy/dist/pypy/module/pypymagic/test/test_special.py	(original)
+++ pypy/dist/pypy/module/pypymagic/test/test_special.py	Fri Nov 17 20:49:08 2006
@@ -1,9 +1,9 @@
 import py
-from pypy.conftest import gettestobjspace, runappdirect
+from pypy.conftest import gettestobjspace, option
 
 class AppTest(object):
     def setup_class(cls):
-        if runappdirect:
+        if option.runappdirect:
             py.test.skip("does not make sense on pypy-c")
         cls.space = gettestobjspace(**{"objspace.usemodules.select": False})
 



More information about the Pypy-commit mailing list