[pypy-commit] pypy default: Missing newline at the end of file made py.test hiccup. Fix and unskip

fijal noreply at buildbot.pypy.org
Fri May 20 11:08:45 CEST 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
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])


More information about the pypy-commit mailing list