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

cfbolz at codespeak.net cfbolz at codespeak.net
Wed Aug 24 14:38:07 CEST 2005


Author: cfbolz
Date: Wed Aug 24 14:38:06 2005
New Revision: 16375

Modified:
   pypy/dist/pypy/objspace/std/test/test_floatobject.py
Log:
enable test, passes because of ale's fix

Modified: pypy/dist/pypy/objspace/std/test/test_floatobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/test/test_floatobject.py	(original)
+++ pypy/dist/pypy/objspace/std/test/test_floatobject.py	Wed Aug 24 14:38:06 2005
@@ -129,7 +129,7 @@
         assert pw(-1.0, 3.0) == -1.0
         assert pw(-1.0, 1e200) == 1.0
 
-    def DONOTtest_pow_neg_base(self):
+    def test_pow_neg_base(self):
         def pw(x, y):
             return x ** y
         assert pw(-2.0, 2.0) == 4



More information about the Pypy-commit mailing list