summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
Diffstat (limited to 'numpy')
-rw-r--r--numpy/ma/tests/test_core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/ma/tests/test_core.py b/numpy/ma/tests/test_core.py
index 98dbaab20..0abe68ab7 100644
--- a/numpy/ma/tests/test_core.py
+++ b/numpy/ma/tests/test_core.py
@@ -426,7 +426,7 @@ class TestMaskedArray(TestCase):
def test_filled_w_flexible_dtype(self):
"Test filled w/ flexible dtype"
- flexi = array([(1,1,1)], dtype=[('i',int), ('s','|S3'), ('f',float)])
+ flexi = array([(1,1,1)], dtype=[('i',int), ('s','|S8'), ('f',float)])
flexi[0] = masked
assert_equal(flexi.filled(),
np.array([(default_fill_value(0),