(self)
| 1542 | raise AssertionError("Failures: %r" % failures) |
| 1543 | |
| 1544 | def test_ticket_1538(self): |
| 1545 | x = np.finfo(np.float32) |
| 1546 | for name in 'eps epsneg max min resolution tiny'.split(): |
| 1547 | assert_equal(type(getattr(x, name)), np.float32, |
| 1548 | err_msg=name) |
| 1549 | |
| 1550 | def test_ticket_1434(self): |
| 1551 | # Check that the out= argument in var and std has an effect |
nothing calls this directly
no test coverage detected