Skip to content

Commit 27855a6

Browse files
morealyouknowone
authored andcommitted
Unmark resolved tests
1 parent e27538f commit 27855a6

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Lib/test/test_functools.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,6 @@ def test_deepcopy(self):
272272
self.assertIsNot(f_copy.keywords, f.keywords)
273273
self.assertIsNot(f_copy.keywords['bar'], f.keywords['bar'])
274274

275-
# TODO: RUSTPYTHON
276-
@unittest.expectedFailure
277275
def test_setstate(self):
278276
f = self.partial(signature)
279277
f.__setstate__((capture, (1,), dict(a=10), dict(attr=[])))
@@ -309,8 +307,6 @@ def test_setstate_errors(self):
309307
self.assertRaises(TypeError, f.__setstate__, (capture, [], {}, None))
310308
self.assertRaises(TypeError, f.__setstate__, (capture, (), [], None))
311309

312-
# TODO: RUSTPYTHON
313-
@unittest.expectedFailure
314310
def test_setstate_subclasses(self):
315311
f = self.partial(signature)
316312
f.__setstate__((capture, MyTuple((1,)), MyDict(a=10), None))

0 commit comments

Comments
 (0)