summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorSebastian Berg <sebastian@sipsolutions.net>2013-09-22 22:22:21 +0200
committerSebastian Berg <sebastian@sipsolutions.net>2013-09-22 22:22:21 +0200
commitc4b01c9fc013eff51518ce37917290606bdad4c4 (patch)
tree9e7039317964b5c65d09d2ef30211ecefe305d3e /numpy
parentfde3deecd2a243721c5c3fe6f71afe1c21182dea (diff)
downloadnumpy-c4b01c9fc013eff51518ce37917290606bdad4c4.tar.gz
TST: wrong indent in multiarray tests
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/tests/test_multiarray.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/core/tests/test_multiarray.py b/numpy/core/tests/test_multiarray.py
index 77da5543d..33e3bdcab 100644
--- a/numpy/core/tests/test_multiarray.py
+++ b/numpy/core/tests/test_multiarray.py
@@ -3475,11 +3475,11 @@ class TestMapIter(TestCase):
[ 104., 5., 6., 7.,],
[ 8., 9., 40., 11.,]])
- b = arange(6).astype(float)
- index = (array([1, 2, 0]),)
- vals = [50, 4, 100.1]
- test_inplace_increment(b, index, vals)
- assert_equal(b, [ 100.1, 51., 6., 3., 4., 5. ])
+ b = arange(6).astype(float)
+ index = (array([1, 2, 0]),)
+ vals = [50, 4, 100.1]
+ test_inplace_increment(b, index, vals)
+ assert_equal(b, [ 100.1, 51., 6., 3., 4., 5. ])
class PriorityNdarray():