File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed
Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -217,8 +217,6 @@ def fun():
217217
218218 ctx .run (fun )
219219
220- # TODO: RUSTPYTHON
221- @unittest .expectedFailure
222220 @isolated_context
223221 def test_context_getset_1 (self ):
224222 c = contextvars .ContextVar ('c' )
@@ -317,8 +315,6 @@ def test_context_getset_4(self):
317315 with self .assertRaisesRegex (ValueError , 'different Context' ):
318316 c .reset (tok )
319317
320- # TODO: RUSTPYTHON
321- @unittest .expectedFailure
322318 @isolated_context
323319 def test_context_getset_5 (self ):
324320 c = contextvars .ContextVar ('c' , default = 42 )
@@ -332,8 +328,6 @@ def fun():
332328 contextvars .copy_context ().run (fun )
333329 self .assertEqual (c .get (), [])
334330
335- # TODO: RUSTPYTHON
336- @unittest .expectedFailure
337331 def test_context_copy_1 (self ):
338332 ctx1 = contextvars .Context ()
339333 c = contextvars .ContextVar ('c' , default = 42 )
Original file line number Diff line number Diff line change @@ -2797,7 +2797,6 @@ def test_easy_debugging(self):
27972797 self .assertIn (name , repr (state ))
27982798 self .assertIn (name , str (state ))
27992799
2800- @unittest .expectedFailure # TODO: RUSTPYTHON
28012800 def test_getgeneratorlocals (self ):
28022801 def each (lst , a = None ):
28032802 b = (1 , 2 , 3 )
@@ -2985,7 +2984,6 @@ def test_easy_debugging(self):
29852984 self .assertIn (name , repr (state ))
29862985 self .assertIn (name , str (state ))
29872986
2988- @unittest .expectedFailure # TODO: RUSTPYTHON
29892987 async def test_getasyncgenlocals (self ):
29902988 async def each (lst , a = None ):
29912989 b = (1 , 2 , 3 )
You can’t perform that action at this time.
0 commit comments