def stub_sleep_fixture(): stub_sleep() yield unstub_sleep()
def tearDown(self): unstub_sleep() AioHTTPTestCase.tearDown(self)
async def tearDownAsync(self): unstub_sleep() await self.session.close() await AioHTTPTestCase.tearDownAsync(self)