(self)
| 978 | run_async(foo()) |
| 979 | |
| 980 | def test_await_2(self): |
| 981 | async def foo(): |
| 982 | await [] |
| 983 | with self.assertRaisesRegex(TypeError, "'list' object can.t be awaited"): |
| 984 | run_async(foo()) |
| 985 | |
| 986 | def test_await_3(self): |
| 987 | async def foo(): |
nothing calls this directly
no test coverage detected