Skip to content

Commit aa6fccc

Browse files
committed
Testfix for the ndarray assertions.
For some reason, 'logical_or' does not handle 'True || masked' properly, causing it to return 'masked' when it should return 'True'.
1 parent 5eb6897 commit aa6fccc

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/utils.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ def assert_identical_ndarrays(x: numpy.ndarray, y: numpy.ndarray):
2222
if numpy.ma.is_masked(x):
2323
assert (x.mask == y.mask).all()
2424
comp = is_equal_with_nan(x.data, y.data)
25-
assert numpy.logical_or(x.mask, comp).all()
25+
remask = numpy.logical_or(numpy.zeros(x.shape), x.mask) # using an OR to force broadcasting of buggy masks of different shape.
26+
comp[remask] = True
27+
assert comp.all()
2628
else:
2729
assert is_equal_with_nan(x, y).all()
2830

@@ -42,7 +44,9 @@ def assert_close_ndarrays(x: numpy.ndarray, y: numpy.ndarray):
4244
if numpy.ma.is_masked(x):
4345
assert (x.mask == y.mask).all()
4446
comp = is_close_with_nan(x.data, y.data)
45-
assert numpy.logical_or(x.mask, comp).all()
47+
remask = numpy.logical_or(numpy.zeros(x.shape, dtype=numpy.bool_), x.mask) # using an OR to force broadcasting of buggy masks of different shape.
48+
comp[remask] = True
49+
assert comp.all()
4650
else:
4751
assert is_close_with_nan(x, y).all()
4852

0 commit comments

Comments
 (0)