diff options
Diffstat (limited to 'numpy/lib/tests/test_arraysetops.py')
-rw-r--r-- | numpy/lib/tests/test_arraysetops.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/tests/test_arraysetops.py b/numpy/lib/tests/test_arraysetops.py index d2638e4b9..e83f8552e 100644 --- a/numpy/lib/tests/test_arraysetops.py +++ b/numpy/lib/tests/test_arraysetops.py @@ -96,8 +96,8 @@ class TestSetOps(TestCase): check_all(aa, bb, i1, i2, c, dt) # test for ticket #2799 - aa = [1.+0.j, 1- 1.j, 1] - assert_array_equal(np.unique(aa), [ 1.-1.j, 1.+0.j]) + aa = [1. + 0.j, 1 - 1.j, 1] + assert_array_equal(np.unique(aa), [1. - 1.j, 1. + 0.j]) # test for ticket #4785 a = [(1, 2), (1, 2), (2, 3)] |