diff options
author | Nathaniel J. Smith <njs@pobox.com> | 2015-12-11 17:46:36 +0000 |
---|---|---|
committer | Nathaniel J. Smith <njs@pobox.com> | 2015-12-11 17:46:36 +0000 |
commit | dcdc9dea7863685cc04ddb89c6da6e466cab3ed3 (patch) | |
tree | b7fe978cc725e61ae30ce681b9df4d44f3ad8b60 | |
parent | 9424d3616d8c80b7f0b4dcf31ff3c335db76c0fa (diff) | |
parent | 192bff5ea1b37359c45e4e54c4b14b402e368663 (diff) | |
download | numpy-dcdc9dea7863685cc04ddb89c6da6e466cab3ed3.tar.gz |
Merge pull request #6813 from charris/fix-ma-print-test
TST,BUG: Make test_mvoid_multidim_print work for 32 bit systems.
-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],)") |