[pypy-svn] r34230 - pypy/dist/pypy/objspace/std/test

arigo at codespeak.net arigo at codespeak.net
Sun Nov 5 12:59:14 CET 2006


Author: arigo
Date: Sun Nov  5 12:59:12 2006
New Revision: 34230

Modified:
   pypy/dist/pypy/objspace/std/test/test_dictproxy.py
Log:
Fix test to also pass on CPython.


Modified: pypy/dist/pypy/objspace/std/test/test_dictproxy.py
==============================================================================
--- pypy/dist/pypy/objspace/std/test/test_dictproxy.py	(original)
+++ pypy/dist/pypy/objspace/std/test/test_dictproxy.py	Sun Nov  5 12:59:12 2006
@@ -21,9 +21,9 @@
     def test_dictproxyeq(self):
         class a(object):
             pass
-        class b(object):
+        class b(a):
             stuff = 42
-        class c(object):
+        class c(a):
             stuff = 42
         assert a.__dict__ == a.__dict__
         assert a.__dict__ != b.__dict__



More information about the Pypy-commit mailing list