[pypy-svn] r68826 - pypy/trunk/pypy/interpreter/test

cfbolz at codespeak.net cfbolz at codespeak.net
Wed Oct 28 17:51:49 CET 2009


Author: cfbolz
Date: Wed Oct 28 17:51:49 2009
New Revision: 68826

Modified:
   pypy/trunk/pypy/interpreter/test/test_function.py
Log:
fix XXX from rev 4872


Modified: pypy/trunk/pypy/interpreter/test/test_function.py
==============================================================================
--- pypy/trunk/pypy/interpreter/test/test_function.py	(original)
+++ pypy/trunk/pypy/interpreter/test/test_function.py	Wed Oct 28 17:51:49 2009
@@ -16,7 +16,7 @@
         assert f.func_defaults == None
         assert f.func_dict == {}
         assert type(f.func_globals) == dict
-        #self.assertEquals(f.func_closure, None)  XXX
+        assert f.func_closure is None
         assert f.func_doc == None
         assert f.func_name == 'f'
         assert f.__module__ == 'mymodulename'



More information about the Pypy-commit mailing list