[3.14] gh-105987: unskip test_issue105987 from test_asyncio.test_eager_task_factory (GH-139538) (#139539)

Co-authored-by: Kumar Aditya <kumaraditya@python.org>
This commit is contained in:
Miss Islington (bot) 2025-10-03 22:21:28 +02:00 committed by GitHub
parent 292b6cf3e6
commit a73fc979cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -316,11 +316,9 @@ def tearDown(self):
asyncio.all_tasks = asyncio.tasks.all_tasks = self._all_tasks
return super().tearDown()
@unittest.skip("skip")
def test_issue105987(self):
code = """if 1:
from _asyncio import _swap_current_task
from _asyncio import _swap_current_task, _set_running_loop
class DummyTask:
pass
@ -329,6 +327,7 @@ class DummyLoop:
pass
l = DummyLoop()
_set_running_loop(l)
_swap_current_task(l, DummyTask())
t = _swap_current_task(l, None)
"""