Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Enable unittest test_async_case again
  • Loading branch information
youknowone committed Jan 23, 2026
commit 710d5010975ad3de67102117bea8e77aa667440f
5 changes: 1 addition & 4 deletions Lib/test/test_unittest/test_async_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ class MyException(Exception):


def tearDownModule():
# XXX: RUSTPYTHON; asyncio.events._set_event_loop_policy is not implemented
# asyncio.events._set_event_loop_policy(None)
pass
asyncio.events._set_event_loop_policy(None)


class TestCM:
Expand Down Expand Up @@ -52,7 +50,6 @@ def setUp(self):
# starting a new event loop
self.addCleanup(support.gc_collect)

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_full_cycle(self):
expected = ['setUp',
'asyncSetUp',
Expand Down
Loading