[pypy-commit] pypy type-specialized-instances: adapt to new way of doing stuff

cfbolz noreply at buildbot.pypy.org
Thu Jan 10 11:45:20 CET 2013


Author: Carl Friedrich Bolz <cfbolz at gmx.de>
Branch: type-specialized-instances
Changeset: r59920:3a26e7c6c310
Date: 2013-01-10 11:44 +0100
http://bitbucket.org/pypy/pypy/changeset/3a26e7c6c310/

Log:	adapt to new way of doing stuff

diff --git a/pypy/objspace/std/test/test_mapdict.py b/pypy/objspace/std/test/test_mapdict.py
--- a/pypy/objspace/std/test/test_mapdict.py
+++ b/pypy/objspace/std/test/test_mapdict.py
@@ -303,8 +303,7 @@
         assert c.terminator.size_estimate() in [(i + 10) // 2, (i + 11) // 2]
 
 class TestTypeSpecializedAttributes(object):
-    def setup_class(cls):
-        cls.space = gettestobjspace(**{"objspace.std.withmapdict": True})
+    spaceconfig = {"objspace.std.withmapdict": True}
 
     def test_attributes(self):
         space = self.space


More information about the pypy-commit mailing list