(self)
| 334 | pass |
| 335 | |
| 336 | async def test_timeout_finished(self): |
| 337 | async with asyncio.timeout(0.01) as cm: |
| 338 | pass |
| 339 | with self.assertRaisesRegex(RuntimeError, "finished"): |
| 340 | cm.reschedule(0.02) |
| 341 | |
| 342 | async def test_timeout_expired(self): |
| 343 | with self.assertRaises(TimeoutError): |
nothing calls this directly
no test coverage detected