[pypy-commit] pypy default: Fixed a typo in a test

justinpeel noreply at buildbot.pypy.org
Fri Jul 22 04:22:23 CEST 2011


Author: Justin Peel <notmuchtotell at gmail.com>
Branch: 
Changeset: r45855:cc2ae015c7fb
Date: 2011-07-21 20:22 -0600
http://bitbucket.org/pypy/pypy/changeset/cc2ae015c7fb/

Log:	Fixed a typo in a test

diff --git a/pypy/module/micronumpy/test/test_numarray.py b/pypy/module/micronumpy/test/test_numarray.py
--- a/pypy/module/micronumpy/test/test_numarray.py
+++ b/pypy/module/micronumpy/test/test_numarray.py
@@ -173,7 +173,7 @@
 
     def test_radd(self):
         from numpy import array
-        r = 3 + array(range(3))\
+        r = 3 + array(range(3))
         for i in range(3):
             assert r[i] == i + 3
 


More information about the pypy-commit mailing list