fix(tests): eliminate RuntimeWarning for unawaited coroutines #32
Reference in New Issue
Block a user
Delete Branch "fix/unawaited-coroutine-warnings"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Two independent warnings surfaced in the full pytest suite:
asyncio.ensure_futurecreated a dummy task and discarded the real coroutine._create_task— when no loop is running, the coroutine was left unawaited.Both fixes are test-only / defensive-code changes. No functional behaviour changed.