(self)
| 241 | which conflicts with the error behavior of np.conjugate. |
| 242 | """ |
| 243 | def test_conjugate(self): |
| 244 | for a in np.array(5), np.array(5j): |
| 245 | self.assert_not_deprecated(a.conjugate) |
| 246 | for a in (np.array('s'), np.array('2016', 'M'), |
| 247 | np.array((1, 2), [('a', int), ('b', int)])): |
| 248 | self.assert_deprecated(a.conjugate) |
| 249 | |
| 250 | |
| 251 | class TestNPY_CHAR(_DeprecationTestCase): |
nothing calls this directly
no test coverage detected