diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-09-22 13:41:10 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-09-22 13:41:10 -0700 |
commit | 372d9cab91990da4631b29ee946fc39ac8422bcc (patch) | |
tree | 87e360284da7cb69e1b0694a05cdcd6dfc1faac6 | |
parent | 6f9a41276153187a4c6e45eb0b8a9999d946608d (diff) | |
parent | c4b01c9fc013eff51518ce37917290606bdad4c4 (diff) | |
download | numpy-372d9cab91990da4631b29ee946fc39ac8422bcc.tar.gz |
Merge pull request #3781 from seberg/test_multiarray-indent
TST: wrong indent in multiarray tests
-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(): |