We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c735b0 commit 022dbc5Copy full SHA for 022dbc5
Lib/test/test_unittest/testmock/testasync.py
@@ -734,7 +734,6 @@ def __aiter__(self): pass
734
735
async def __anext__(self): pass
736
737
- @unittest.expectedFailure # TODO: RUSTPYTHON
738
def test_aiter_set_return_value(self):
739
mock_iter = AsyncMock(name="tester")
740
mock_iter.__aiter__.return_value = [1, 2, 3]
@@ -760,7 +759,6 @@ def inner_test(mock_type):
760
759
inner_test(mock_type)
761
762
763
764
def test_mock_async_for(self):
765
async def iterate(iterator):
766
accumulator = []
0 commit comments