[pypy-commit] pypy default: this test works now

bdkearns noreply at buildbot.pypy.org
Fri Dec 20 01:11:50 CET 2013


Author: Brian Kearns <bdkearns at gmail.com>
Branch: 
Changeset: r68501:13ac2969a2eb
Date: 2013-12-19 19:11 -0500
http://bitbucket.org/pypy/pypy/changeset/13ac2969a2eb/

Log:	this test works now

diff --git a/pypy/module/micronumpy/test/test_sorting.py b/pypy/module/micronumpy/test/test_sorting.py
--- a/pypy/module/micronumpy/test/test_sorting.py
+++ b/pypy/module/micronumpy/test/test_sorting.py
@@ -306,9 +306,8 @@
 
 # tests from numpy/core/tests/test_regression.py
     def test_sort_bigendian(self):
-        skip('not implemented yet')
-        from numpypy import array, dtype
-        a = array(range(11),dtype='float64')
+        from numpy import array, dtype
+        a = array(range(11), dtype='float64')
         c = a.astype(dtype('<f8'))
         c.sort()
         assert max(abs(a-c)) < 1e-32


More information about the pypy-commit mailing list