(self)
| 345 | assert not array_notnull_equiv(a, b) |
| 346 | |
| 347 | def test_wrong_shape(self): |
| 348 | a = np.array([[1, np.nan, np.nan, 4]]) |
| 349 | b = np.array([[1, 2], [np.nan, 4]]) |
| 350 | assert not array_notnull_equiv(a, b) |
| 351 | |
| 352 | @pytest.mark.parametrize( |
| 353 | "val1, val2, val3, null", |
nothing calls this directly
no test coverage detected