Skip to content

Commit 4a357ee

Browse files
committed
adjust successful/failing tests from unittest/test
1 parent 40b96bf commit 4a357ee

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

Lib/unittest/test/test_async_case.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ async def __aenter__(self):
3737
pass
3838

3939

40-
VAR = contextvars.ContextVar('VAR', default=())
40+
# TODO: RUSTPYTHON; used by following test suite
41+
# VAR = contextvars.ContextVar('VAR', default=())
4142

4243

4344
@unittest.skip("TODO: RUSTPYTHON; requires sys.get_coroutine_origin_tracking_depth()")

Lib/unittest/test/test_runner.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1293,8 +1293,6 @@ def MockResultClass(*args):
12931293
expectedresult = (runner.stream, DESCRIPTIONS, VERBOSITY)
12941294
self.assertEqual(runner._makeResult(), expectedresult)
12951295

1296-
# TODO: RUSTPYTHON
1297-
@unittest.expectedFailure
12981296
@support.requires_subprocess()
12991297
def test_warnings(self):
13001298
"""

0 commit comments

Comments
 (0)