Skip to content

Commit d400293

Browse files
committed
Unmark asyncgen tests
1 parent 54e3ab0 commit d400293

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

Lib/test/test_asyncgen.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,6 @@ async def gen():
179179
else:
180180
self.fail('StopAsyncIteration was not raised')
181181

182-
# TODO: RUSTPYTHON
183-
@unittest.expectedFailure
184182
def test_async_gen_exception_03(self):
185183
async def gen():
186184
await awaitable()
@@ -741,8 +739,6 @@ async def run():
741739
self.loop.run_until_complete(run())
742740
self.assertEqual(DONE, 10)
743741

744-
# TODO: RUSTPYTHON
745-
@unittest.expectedFailure
746742
def test_async_gen_asyncio_aclose_12(self):
747743
DONE = 0
748744

@@ -844,8 +840,6 @@ async def run():
844840
self.loop.run_until_complete(run())
845841
self.assertEqual(DONE, 1)
846842

847-
# TODO: RUSTPYTHON
848-
@unittest.expectedFailure
849843
def test_async_gen_asyncio_asend_03(self):
850844
DONE = 0
851845

@@ -933,8 +927,6 @@ async def run():
933927
self.loop.run_until_complete(run())
934928
self.assertEqual(DONE, 1)
935929

936-
# TODO: RUSTPYTHON
937-
@unittest.expectedFailure
938930
def test_async_gen_asyncio_athrow_02(self):
939931
DONE = 0
940932

@@ -1053,8 +1045,6 @@ async def run():
10531045

10541046
self.loop.run_until_complete(run())
10551047

1056-
# TODO: RUSTPYTHON
1057-
@unittest.expectedFailure
10581048
def test_async_gen_asyncio_shutdown_01(self):
10591049
finalized = 0
10601050

0 commit comments

Comments
 (0)