(self)
| 986 | run_async(foo()) |
| 987 | |
| 988 | def test_await_2(self): |
| 989 | async def foo(): |
| 990 | await [] |
| 991 | with self.assertRaisesRegex(TypeError, "'list' object can.t be awaited"): |
| 992 | run_async(foo()) |
| 993 | |
| 994 | def test_await_3(self): |
| 995 | async def foo(): |
nothing calls this directly
no test coverage detected