Skip to content

Commit 1b901a1

Browse files
committed
mark expectedFailure
1 parent 2642207 commit 1b901a1

File tree

5 files changed

+127
-9
lines changed

5 files changed

+127
-9
lines changed

Lib/test/test_abc.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,8 @@ def method_two(self):
168168
msg = r"class C without an implementation for abstract methods 'method_one', 'method_two'"
169169
self.assertRaisesRegex(TypeError, msg, C)
170170

171+
# TODO: RUSTPYTHON; AssertionError: False is not true
172+
@unittest.expectedFailure
171173
def test_abstractmethod_integration(self):
172174
for abstractthing in [abc.abstractmethod, abc.abstractproperty,
173175
abc.abstractclassmethod,

Lib/test/test_enum.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4882,8 +4882,6 @@ def test_inspect_classify_class_attrs(self):
48824882
if failed:
48834883
self.fail("result does not equal expected, see print above")
48844884

4885-
# TODO: RUSTPYTHON
4886-
@unittest.expectedFailure
48874885
def test_inspect_signatures(self):
48884886
from inspect import signature, Signature, Parameter
48894887
self.assertEqual(

0 commit comments

Comments
 (0)