Skip to content
This repository has been archived by the owner on May 31, 2020. It is now read-only.

Commit

Permalink
Merge pull request #858 from BPYap/add-set-related-expectedFailure-te…
Browse files Browse the repository at this point in the history
…sts-complex

Added test case for issue #857
  • Loading branch information
freakboy3742 authored Jul 13, 2018
2 parents be440a1 + d7a2bc2 commit 20b8bc7
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/datatypes/test_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@


class SetTests(TranspileTestCase):
@expectedFailure
def test_complex_element(self):
self.assertCodeExecution("""
x = {1j, 2j}
for i in x:
print(i)
""")

@expectedFailure
def test_equal_value_different_datatypes(self):
self.assertCodeExecution("""
Expand Down

0 comments on commit 20b8bc7

Please sign in to comment.