()
| 278 | await asyncio.sleep(0) |
| 279 | |
| 280 | async def coro2(): |
| 281 | self.assertTrue(self.loop.is_running()) |
| 282 | self.loop.run_until_complete(coro1()) |
| 283 | |
| 284 | with self.assertWarnsRegex( |
| 285 | RuntimeWarning, |
nothing calls this directly
no test coverage detected