(self)
| 340 | |
| 341 | class GetNewIOLoopTest(AsyncTestCase): |
| 342 | def get_new_ioloop(self): |
| 343 | # Use the current loop instead of creating a new one here. |
| 344 | return ioloop.IOLoop.current() |
| 345 | |
| 346 | def setUp(self): |
| 347 | # This simulates the effect of an asyncio test harness like |