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
Unmark more tests
  • Loading branch information
ShaharNaveh committed Jan 10, 2026
commit 022dbc54b40f80623a68ed11b1dbb601da69c175
2 changes: 0 additions & 2 deletions Lib/test/test_unittest/testmock/testasync.py
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,6 @@ def __aiter__(self): pass

async def __anext__(self): pass

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_aiter_set_return_value(self):
mock_iter = AsyncMock(name="tester")
mock_iter.__aiter__.return_value = [1, 2, 3]
Expand All @@ -760,7 +759,6 @@ def inner_test(mock_type):
inner_test(mock_type)


@unittest.expectedFailure # TODO: RUSTPYTHON
def test_mock_async_for(self):
async def iterate(iterator):
accumulator = []
Expand Down
Loading