(self)
| 581 | self.do_check_both(7.955, 7.952, 0.001, 3.8e-4, False, True) |
| 582 | |
| 583 | def test_approx_equal_both4(self): |
| 584 | # Test actual error > both absolute and relative error. |
| 585 | self.do_check_both(2.78, 2.75, 0.01, 0.001, False, False) |
| 586 | self.do_check_both(971.44, 971.47, 0.02, 3e-5, False, False) |
| 587 | |
| 588 | |
| 589 | class ApproxEqualSpecialsTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected