[pypy-commit] pypy ufuncapi: test now passes

mattip noreply at buildbot.pypy.org
Mon Jun 23 20:36:23 CEST 2014


Author: mattip <matti.picus at gmail.com>
Branch: ufuncapi
Changeset: r72174:3a39208a51ad
Date: 2014-06-23 21:35 +0300
http://bitbucket.org/pypy/pypy/changeset/3a39208a51ad/

Log:	test now passes

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
@@ -228,8 +228,7 @@
         raises (ValueError, int_func22, arange(10))
         res = int_func12(arange(10))
         assert len(res) == 2
-        # XXX makes ztranslation unhappy
-        # assert isinstance(res, tuple)
+        assert isinstance(res, tuple)
         assert (res[0] == arange(10)).all()
 
     def test_from_cffi_func(self):


More information about the pypy-commit mailing list