Skip to content

Commit cf3e257

Browse files
committed
fix test
1 parent 94a1903 commit cf3e257

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

Lib/test/test_descr.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -479,8 +479,6 @@ def __getitem__(self, i):
479479
self.assertEqual(a[2], 102)
480480
self.assertEqual(a[100:200], (100,200))
481481

482-
# TODO: RUSTPYTHON
483-
@unittest.expectedFailure
484482
def test_metaclass(self):
485483
# Testing metaclasses...
486484
class C(metaclass=type):

Lib/test/test_super.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,6 @@ def f():
162162

163163
self.assertIs(test_class, A)
164164

165-
# TODO: RUSTPYTHON
166-
@unittest.expectedFailure
167165
def test___class___delayed(self):
168166
# See issue #23722
169167
test_namespace = None
@@ -236,8 +234,6 @@ def f(self):
236234
with self.assertRaises(AttributeError):
237235
WithClassRef.__classcell__
238236

239-
# TODO: RUSTPYTHON
240-
@unittest.expectedFailure
241237
def test___classcell___missing(self):
242238
# See issue #23722
243239
# Some metaclasses may not pass the original namespace to type.__new__

0 commit comments

Comments
 (0)