(self, expected, actual)
| 74 | self.assertLazyAnd(expected, actual, assert_identical) |
| 75 | |
| 76 | def assertLazyAndAllClose(self, expected, actual): |
| 77 | self.assertLazyAnd(expected, actual, assert_allclose) |
| 78 | |
| 79 | @pytest.fixture(autouse=True) |
| 80 | def setUp(self): |
no test coverage detected