File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,9 @@ def assert_identical_ndarrays(x: numpy.ndarray, y: numpy.ndarray):
22
22
if numpy .ma .is_masked (x ):
23
23
assert (x .mask == y .mask ).all ()
24
24
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 ()
26
28
else :
27
29
assert is_equal_with_nan (x , y ).all ()
28
30
@@ -42,7 +44,9 @@ def assert_close_ndarrays(x: numpy.ndarray, y: numpy.ndarray):
42
44
if numpy .ma .is_masked (x ):
43
45
assert (x .mask == y .mask ).all ()
44
46
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 ()
46
50
else :
47
51
assert is_close_with_nan (x , y ).all ()
48
52
You can’t perform that action at this time.
0 commit comments