Skip to content

Commit a949c35

Browse files
committed
Temp: Skip test_collections.TestChainMap.test_union_operators
1 parent 81fbcbc commit a949c35

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Lib/test/test_collections.py

+2
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,8 @@ def __contains__(self, key):
259259
d = c.new_child(b=20, c=30)
260260
self.assertEqual(d.maps, [{'b': 20, 'c': 30}, {'a': 1, 'b': 2}])
261261

262+
# TODO: RUSTPYTHON
263+
@unittest.expectedFailure
262264
def test_union_operators(self):
263265
cm1 = ChainMap(dict(a=1, b=2), dict(c=3, d=4))
264266
cm2 = ChainMap(dict(a=10, e=5), dict(b=20, d=4))

0 commit comments

Comments
 (0)