From 74a7f037596caea4c89ea4671bd23baa3262ea06 Mon Sep 17 00:00:00 2001 From: Jeong Yunwon Date: Mon, 18 Jul 2022 22:17:42 +0900 Subject: [PATCH] Fix outdated test_userlist --- Lib/test/test_userlist.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Lib/test/test_userlist.py b/Lib/test/test_userlist.py index 9ed682afeb..63f47f572e 100644 --- a/Lib/test/test_userlist.py +++ b/Lib/test/test_userlist.py @@ -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 @@ -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):