[pypy-svn] r38497 - pypy/dist/pypy/objspace/test

arigo at codespeak.net arigo at codespeak.net
Sun Feb 11 19:02:38 CET 2007


Author: arigo
Date: Sun Feb 11 19:02:37 2007
New Revision: 38497

Modified:
   pypy/dist/pypy/objspace/test/test_descroperation.py
Log:
Oups.


Modified: pypy/dist/pypy/objspace/test/test_descroperation.py
==============================================================================
--- pypy/dist/pypy/objspace/test/test_descroperation.py	(original)
+++ pypy/dist/pypy/objspace/test/test_descroperation.py	Sun Feb 11 19:02:37 2007
@@ -192,7 +192,7 @@
         # this behavior changed in 2.4
         #assert type(s.__dict__.keys()[0]) is str   # don't store S keys
         #assert s.abc is s
-        getattr(s,s) is s
+        assert getattr(s,s) is s
 
     def test_notimplemented(self):
         #import types



More information about the Pypy-commit mailing list