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
Mark failing test correctly
  • Loading branch information
ShaharNaveh committed Jun 25, 2026
commit c7be29d912325b8cebb35b081bd7bbd290750878
2 changes: 1 addition & 1 deletion Lib/test/test_repl.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def test_lexer_buffer_realloc_with_null_start(self):
self.assertEqual(p.returncode, 0)
self.assertIn(long_value, output)

@unittest.expectedFailure # TODO: RUSTPYTHON; AssertionError: 101 != 0
@unittest.expectedFailureIf(sys.platform == "android", "TODO: RUSTPYTHON; AssertionError: 101 != 0")
def test_close_stdin(self):
user_input = dedent('''
import os
Expand Down
Loading