diff options
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/tests/test_multiarray.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/core/tests/test_multiarray.py b/numpy/core/tests/test_multiarray.py index d08587edf..012fa0cab 100644 --- a/numpy/core/tests/test_multiarray.py +++ b/numpy/core/tests/test_multiarray.py @@ -3510,11 +3510,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(): |