Skip to content

Commit 88134cc

Browse files
committed
mark tests
1 parent cb34b4d commit 88134cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_sys.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ class SysModuleTest(unittest.TestCase):
206206
def tearDown(self):
207207
test.support.reap_children()
208208

209+
@unittest.expectedFailure # TODO: RUSTPYTHON
209210
def test_exit(self):
210211
# call with two arguments
211212
self.assertRaises(TypeError, sys.exit, 42, 42)
@@ -1319,7 +1320,6 @@ def test_orig_argv(self):
13191320
self.assertEqual(proc.stdout.rstrip().splitlines(), expected,
13201321
proc)
13211322

1322-
@unittest.expectedFailure # TODO: RUSTPYTHON; AttributeError: module 'sys' has no attribute 'stdlib_module_names'
13231323
def test_module_names(self):
13241324
self.assertIsInstance(sys.stdlib_module_names, frozenset)
13251325
for name in sys.stdlib_module_names:

0 commit comments

Comments
 (0)