(self)
| 4581 | assert_equal(test, control) |
| 4582 | |
| 4583 | def test_where_broadcast(self): |
| 4584 | # Issue 8599 |
| 4585 | x = np.arange(9).reshape(3, 3) |
| 4586 | y = np.zeros(3) |
| 4587 | core = np.where([1, 0, 1], x, y) |
| 4588 | ma = where([1, 0, 1], x, y) |
| 4589 | |
| 4590 | assert_equal(core, ma) |
| 4591 | assert_equal(core.dtype, ma.dtype) |
| 4592 | |
| 4593 | def test_where_structured(self): |
| 4594 | # Issue 8600 |
nothing calls this directly
no test coverage detected