Skip to content

Commit 6a08fda

Browse files
committed
Unmark fixed tests
1 parent 6d863fb commit 6a08fda

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

Lib/test/test_types.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,6 @@ def test_internal_sizes(self):
630630
self.assertGreater(object.__basicsize__, 0)
631631
self.assertGreater(tuple.__itemsize__, 0)
632632

633-
@unittest.expectedFailure # TODO: RUSTPYTHON; AssertionError: <method '__lt__' of 'int' objects> is not an instance of <class 'wrapper_descriptor'>
634633
def test_slot_wrapper_types(self):
635634
self.assertIsInstance(object.__init__, types.WrapperDescriptorType)
636635
self.assertIsInstance(object.__str__, types.WrapperDescriptorType)
@@ -646,7 +645,6 @@ def test_dunder_get_signature(self):
646645
# gh-93021: Second parameter is optional
647646
self.assertIs(sig.parameters["owner"].default, None)
648647

649-
@unittest.expectedFailure # TODO: RUSTPYTHON; AssertionError: <built-in method __lt__ of int object at 0xad6c41080> is not an instance of <class 'method-wrapper'>
650648
def test_method_wrapper_types(self):
651649
self.assertIsInstance(object().__init__, types.MethodWrapperType)
652650
self.assertIsInstance(object().__str__, types.MethodWrapperType)

0 commit comments

Comments
 (0)