Checks that x is smaller than y elementwise.
(x, y, err_msg='', verbose=True)
| 273 | |
| 274 | |
| 275 | def assert_array_less(x, y, err_msg='', verbose=True): |
| 276 | """ |
| 277 | Checks that x is smaller than y elementwise. |
| 278 | |
| 279 | """ |
| 280 | assert_array_compare(operator.__lt__, x, y, |
| 281 | err_msg=err_msg, verbose=verbose, |
| 282 | header='Arrays are not less-ordered') |
| 283 | |
| 284 | |
| 285 | def assert_mask_equal(m1, m2, err_msg=''): |
nothing calls this directly
no test coverage detected
searching dependent graphs…