Skip to content

Commit 2f207ba

Browse files
committed
Mark erroring tests
1 parent 33a030a commit 2f207ba

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Lib/test/test_xml_dom_minicompat.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ def test_emptynodelist___add__(self):
3535
node_list = EmptyNodeList() + NodeList()
3636
self.assertEqual(node_list, NodeList())
3737

38+
# TODO: RUSTPYTHON
39+
@unittest.expectedFailure
3840
def test_emptynodelist___radd__(self):
3941
node_list = [1,2] + EmptyNodeList()
4042
self.assertEqual(node_list, [1,2])
@@ -82,6 +84,8 @@ def test_nodelist___radd__(self):
8284
node_list = [1, 2] + NodeList([3, 4])
8385
self.assertEqual(node_list, NodeList([1, 2, 3, 4]))
8486

87+
# TODO: RUSTPYTHON
88+
@unittest.expectedFailure
8589
def test_nodelist_pickle_roundtrip(self):
8690
# Test pickling and unpickling of a NodeList.
8791

0 commit comments

Comments
 (0)