Skip to content

Commit

Permalink
No need to proxy the call; we just need the stup.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Jan 13, 2025
1 parent 966ef83 commit 1d2c92d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion testbed/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,9 @@ def run_until_complete(self, future):
return asyncio.run_coroutine_threadsafe(coro, self.loop).result()

async def shutdown_asyncgens(self):
await self.loop.shutdown_asyncgens()
# The proxy event loop doesn't need to shut anything down; the
# underlying event loop will shut down its own async generators.
pass

def is_closed(self):
return self.closed
Expand Down

0 comments on commit 1d2c92d

Please sign in to comment.