Checks that x is smaller than y elementwise.
(x, y, err_msg='', verbose=True)
| 267 | |
| 268 | |
| 269 | def assert_array_less(x, y, err_msg='', verbose=True): |
| 270 | """ |
| 271 | Checks that x is smaller than y elementwise. |
| 272 | |
| 273 | """ |
| 274 | assert_array_compare(operator.__lt__, x, y, |
| 275 | err_msg=err_msg, verbose=verbose, |
| 276 | header='Arrays are not less-ordered') |
| 277 | |
| 278 | |
| 279 | def assert_mask_equal(m1, m2, err_msg=''): |
nothing calls this directly
no test coverage detected