Mark a failing test of test/test_weakset.py

This commit is contained in:
LYK
2023-03-07 23:49:18 +09:00
parent 7b6486cd30
commit 1812bd17a5

View File

@@ -462,6 +462,8 @@ class TestWeakSet(unittest.TestCase):
self.assertIsInstance(self.s, Set)
self.assertIsInstance(self.s, MutableSet)
# TODO: RUSTPYTHON
@unittest.expectedFailure
def test_copying(self):
for cls in WeakSet, WeakSetWithSlots:
s = cls(self.items)