Skip to content

Commit ad66595

Browse files
committed
Do not skip test_xml_dom_minicompat.EmptyNodeListTestCase.test_emptynodelist___radd__
1 parent d35ba6d commit ad66595

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Lib/test/test_xml_dom_minicompat.py

-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ def test_emptynodelist___add__(self):
3535
node_list = EmptyNodeList() + NodeList()
3636
self.assertEqual(node_list, NodeList())
3737

38-
# TODO: RUSTPYTHON
39-
@unittest.expectedFailure
4038
def test_emptynodelist___radd__(self):
4139
node_list = [1,2] + EmptyNodeList()
4240
self.assertEqual(node_list, [1,2])

0 commit comments

Comments
 (0)