Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions Lib/test/test_userlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@
class UserListTest(list_tests.CommonTest):
type2test = UserList

# TODO: RUSTPYTHON, parent method is marked but this version passes
def test_init(self):
super().test_init()

# TODO: RUSTPYTHON
@unittest.expectedFailure
def test_contains_fake(self): # XXX: RUSTPYTHON; the method also need to be removed when done
Expand All @@ -21,10 +17,9 @@ def test_contains_fake(self): # XXX: RUSTPYTHON; the method also need to be rem
def test_count(self): # XXX: RUSTPYTHON; the method also need to be removed when done
super().test_count()

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

def test_getslice(self):
Expand Down