From 6673be5a08e65a4b1180c507a41474bdabb6bb7f Mon Sep 17 00:00:00 2001 From: Lee Dogeon Date: Sun, 22 Jun 2025 22:12:52 +0900 Subject: [PATCH] Unmark fixed tests --- Lib/test/test_descr.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index eae8b42fce..3114527dd0 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -1851,8 +1851,6 @@ def __init__(self, foo): object.__init__(A(3)) self.assertRaises(TypeError, object.__init__, A(3), 5) - @unittest.expectedFailure - @unittest.skip("TODO: RUSTPYTHON") def test_restored_object_new(self): class A(object): def __new__(cls, *args, **kwargs):