[Numpy-svn] r5445 - trunk/numpy/ma/tests

numpy-svn at scipy.org numpy-svn at scipy.org
Thu Jul 17 04:56:14 EDT 2008


Author: rkern
Date: 2008-07-17 03:56:08 -0500 (Thu, 17 Jul 2008)
New Revision: 5445

Modified:
   trunk/numpy/ma/tests/test_core.py
Log:
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.

Modified: trunk/numpy/ma/tests/test_core.py
===================================================================
--- trunk/numpy/ma/tests/test_core.py	2008-07-17 08:12:28 UTC (rev 5444)
+++ trunk/numpy/ma/tests/test_core.py	2008-07-17 08:56:08 UTC (rev 5445)
@@ -426,7 +426,7 @@
 
     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),




More information about the Numpy-svn mailing list