(self)
| 518 | self.assertTrue(waited) |
| 519 | |
| 520 | async def test_wait_unacquired(self): |
| 521 | cond = asyncio.Condition() |
| 522 | with self.assertRaises(RuntimeError): |
| 523 | await cond.wait() |
| 524 | |
| 525 | async def test_wait_for(self): |
| 526 | cond = asyncio.Condition() |
nothing calls this directly
no test coverage detected