Skip to content

Commit 6edd370

Browse files
authored
Merge pull request #4666 from dalinaum/tests
Update test/test_userlist.py and test_userdict.py from CPython 3.11.2
2 parents 5a74f08 + 58f988b commit 6edd370

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

Lib/test/test_userdict.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,5 +214,6 @@ class G(collections.UserDict):
214214
self.fail("g[42] didn't raise KeyError")
215215

216216

217+
217218
if __name__ == "__main__":
218219
unittest.main()

Lib/test/test_userlist.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@
77
class UserListTest(list_tests.CommonTest):
88
type2test = UserList
99

10-
import sys
11-
@unittest.skipIf(sys.platform == "win32", "TODO: RUSTPYTHON, unexpectedly panics somewhere")
12-
def test_repr_deep(self): # XXX: RUSTPYTHON; remove this method when fixed
13-
super().test_repr_deep()
14-
1510
def test_getslice(self):
1611
super().test_getslice()
1712
l = [0, 1, 2, 3, 4]

0 commit comments

Comments
 (0)