Skip to content

Commit 46e4803

Browse files
committed
Fix outdated test_userlist
1 parent 79f4b33 commit 46e4803

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

Lib/test/test_userlist.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77
class UserListTest(list_tests.CommonTest):
88
type2test = UserList
99

10-
# TODO: RUSTPYTHON, parent method is marked but this version passes
11-
def test_init(self):
12-
super().test_init()
13-
1410
# TODO: RUSTPYTHON
1511
@unittest.expectedFailure
1612
def test_contains_fake(self): # XXX: RUSTPYTHON; the method also need to be removed when done
@@ -21,10 +17,9 @@ def test_contains_fake(self): # XXX: RUSTPYTHON; the method also need to be rem
2117
def test_count(self): # XXX: RUSTPYTHON; the method also need to be removed when done
2218
super().test_count()
2319

24-
# TODO: RUSTPYTHON, parent method is marked but this version passes
2520
import sys
2621
@unittest.skipIf(sys.platform == "win32", "TODO: RUSTPYTHON, unexpectedly panics somewhere")
27-
def test_repr_deep(self):
22+
def test_repr_deep(self): # XXX: RUSTPYTHON; remove this method when fixed
2823
super().test_repr_deep()
2924

3025
def test_getslice(self):

0 commit comments

Comments
 (0)