[pypy-svn] r5277 - pypy/trunk/src/pypy/translator/test

arigo at codespeak.net arigo at codespeak.net
Thu Jun 24 21:23:18 CEST 2004


Author: arigo
Date: Thu Jun 24 21:23:17 2004
New Revision: 5277

Modified:
   pypy/trunk/src/pypy/translator/test/test_pyrextrans.py
Log:
In-place operators now work, re-enabling a test...


Modified: pypy/trunk/src/pypy/translator/test/test_pyrextrans.py
==============================================================================
--- pypy/trunk/src/pypy/translator/test/test_pyrextrans.py	(original)
+++ pypy/trunk/src/pypy/translator/test/test_pyrextrans.py	Thu Jun 24 21:23:17 2004
@@ -131,7 +131,7 @@
         nested_whiles = self.getcompiled(snippet.nested_whiles)
         self.assertEquals(nested_whiles(5,3), '!!!!!')
 
-    def xxxtest_call_five(self):
+    def test_call_five(self):
         call_five = self.getcompiled(snippet.call_five)
         self.assertEquals(call_five(), [5])
 



More information about the Pypy-commit mailing list