(self)
| 3738 | # and async/await syntax |
| 3739 | |
| 3740 | def setUp(self): |
| 3741 | super().setUp() |
| 3742 | self.loop = asyncio.new_event_loop() |
| 3743 | self.set_event_loop(self.loop) |
| 3744 | |
| 3745 | def tearDown(self): |
| 3746 | self.loop.close() |
nothing calls this directly
no test coverage detected