Author: Maciej Fijalkowski <[email protected]>
Branch: 
Changeset: r44316:33c5ec1230ac
Date: 2011-05-20 11:17 +0200
http://bitbucket.org/pypy/pypy/changeset/33c5ec1230ac/

Log:    Missing newline at the end of file made py.test hiccup. Fix and
        unskip

diff --git a/pypy/module/micronumpy/test/test_ufuncs.py 
b/pypy/module/micronumpy/test/test_ufuncs.py
--- a/pypy/module/micronumpy/test/test_ufuncs.py
+++ b/pypy/module/micronumpy/test/test_ufuncs.py
@@ -1,5 +1,3 @@
-import py
-py.test.skip("fails")
 
 from pypy.module.micronumpy.test.test_base import BaseNumpyAppTest
 
@@ -79,4 +77,4 @@
         a = array([-5.0, -0.0, 0.0, float("inf")])
         b = exp(a)
         for i in range(4):
-            assert b[i] == math.exp(a[i])
\ No newline at end of file
+            assert b[i] == math.exp(a[i])
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to