summaryrefslogtreecommitdiff
path: root/numpy/ma/tests
diff options
context:
space:
mode:
authorpierregm <pierregm@localhost>2009-12-07 20:28:09 +0000
committerpierregm <pierregm@localhost>2009-12-07 20:28:09 +0000
commit9fef44316518533cdfb6314b32fcbb015fa9f836 (patch)
treecc9744200cbe45bc48aeffd491714f029db575da /numpy/ma/tests
parentf5c5c6d3b1e7e090c3bdf92cf8139355993a1c06 (diff)
downloadnumpy-9fef44316518533cdfb6314b32fcbb015fa9f836.tar.gz
* Bugfix #1173 and #1174 (Michael D.)
Diffstat (limited to 'numpy/ma/tests')
-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 db8034663..541c34589 100644
--- a/numpy/ma/tests/test_core.py
+++ b/numpy/ma/tests/test_core.py
@@ -1416,7 +1416,7 @@ class TestUfuncs(TestCase):
ur = uf(*args)
mr = mf(*args)
assert_equal(ur.filled(0), mr.filled(0), f)
- assert_mask_equal(ur.mask, mr.mask)
+ assert_mask_equal(ur.mask, mr.mask, err_msg=f)
#........................
def test_reduce(self):
"Tests reduce on MaskedArrays."