diff options
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/ma/tests/test_core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/ma/tests/test_core.py b/numpy/ma/tests/test_core.py index 36b3c5ad0..53cdef978 100644 --- a/numpy/ma/tests/test_core.py +++ b/numpy/ma/tests/test_core.py @@ -756,7 +756,7 @@ class TestMaskedArray(TestCase): t_ma = masked_array(data = [([1, 2, 3],)], mask = [([False, True, False],)], fill_value = ([999999, 999999, 999999],), - dtype = [('a', '<i8', (3,))]) + dtype = [('a', '<i4', (3,))]) assert_(str(t_ma[0]) == "([1, --, 3],)") assert_(repr(t_ma[0]) == "([1, --, 3],)") |