diff --git a/tests/datatypes/test_set.py b/tests/datatypes/test_set.py index 6dc6592b9f..468b97d173 100644 --- a/tests/datatypes/test_set.py +++ b/tests/datatypes/test_set.py @@ -1,7 +1,20 @@ +from unittest import expectedFailure + from .. utils import TranspileTestCase, UnaryOperationTestCase, BinaryOperationTestCase, InplaceOperationTestCase class SetTests(TranspileTestCase): + @expectedFailure + def test_equal_value_different_datatypes(self): + self.assertCodeExecution(""" + x = {1, 1.0, True} + + print("size of set is:", len(x)) + + for i in x: + print(i) + """) + def test_setattr(self): self.assertCodeExecution(""" x = {1, 2, 3}