diff options
author | Robert Kern <robert.kern@gmail.com> | 2008-07-17 08:56:08 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2008-07-17 08:56:08 +0000 |
commit | 16146b44c79631d7ab82652690b0b476d5c57bdb (patch) | |
tree | 0074e9f4d6e4f10ba9d60368abf727bf08289e5b /numpy | |
parent | e2df0c7f93eab474669d8f690f9de7abecb6fa0e (diff) | |
download | numpy-16146b44c79631d7ab82652690b0b476d5c57bdb.tar.gz |
FOR BUILDBOT: Change the test to make sure the double is aligned to a reasonable boundary. It does no harm to the test, but it shouldn't be necessary. However, I need the buildbots to test it out on the Sparc64 platform for me.
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 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), |