(self)
| 577 | self.do_check_both(7.955, 7.952, 0.004, 3.7e-4, True, False) |
| 578 | |
| 579 | def test_approx_equal_both3(self): |
| 580 | # Test actual error <= relative error but > absolute error. |
| 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. |
nothing calls this directly
no test coverage detected