Author: Richard Plangger <r...@pasra.at>
Branch: vecopt
Changeset: r78106:1d9b7639a828
Date: 2015-06-15 09:40 +0200
http://bitbucket.org/pypy/pypy/changeset/1d9b7639a828/

Log:    error in the test case added array instead of summed scalar

diff --git a/pypy/module/micronumpy/test/test_zjit.py 
b/pypy/module/micronumpy/test/test_zjit.py
--- a/pypy/module/micronumpy/test/test_zjit.py
+++ b/pypy/module/micronumpy/test/test_zjit.py
@@ -360,12 +360,12 @@
         b = sum(a)
         c = |60|
         d = sum(c)
-        b + c
+        b + d
         """
 
     def test_sum_multi(self):
         result = self.run("sum_multi")
-        assert result == sum(range(30)) + sum(range(0,60))
+        assert result == sum(range(30)) + sum(range(60))
         self.check_vectorized(1, 1)
 
     def define_sum_float_to_int16():
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to