[pypy-svn] r68569 - pypy/trunk/pypy/objspace/std/test

cfbolz at codespeak.net cfbolz at codespeak.net
Sat Oct 17 10:26:09 CEST 2009


Author: cfbolz
Date: Sat Oct 17 10:26:08 2009
New Revision: 68569

Modified:
   pypy/trunk/pypy/objspace/std/test/test_builtinshortcut.py
Log:
fix import


Modified: pypy/trunk/pypy/objspace/std/test/test_builtinshortcut.py
==============================================================================
--- pypy/trunk/pypy/objspace/std/test/test_builtinshortcut.py	(original)
+++ pypy/trunk/pypy/objspace/std/test/test_builtinshortcut.py	Sat Oct 17 10:26:08 2009
@@ -1,5 +1,5 @@
 from pypy.objspace.std.test import test_userobject
-from pypy.objspace.std.test import test_set
+from pypy.objspace.std.test import test_setobject
 from pypy.objspace.std.test import test_stringobject
 
 WITH_BUILTINSHORTCUT = {'objspace.std.builtinshortcut': True}
@@ -80,7 +80,7 @@
         assert u != s
    
 
-class AppTestSet(test_set.AppTestAppSetTest):
+class AppTestSet(test_setobject.AppTestAppSetTest):
     # this tests tons of funny comparison combinations that can easily go wrong
     def setup_class(cls):
         from pypy import conftest



More information about the Pypy-commit mailing list