(self)
| 289 | message = '.*truth value of an empty array is ambiguous.*' |
| 290 | |
| 291 | def test_1d(self): |
| 292 | self.assert_deprecated(bool, args=(np.array([]),)) |
| 293 | |
| 294 | def test_2d(self): |
| 295 | self.assert_deprecated(bool, args=(np.zeros((1, 0)),)) |
nothing calls this directly
no test coverage detected