Skip to content
Snippets Groups Projects
Commit 07e24a62 authored by Damien George's avatar Damien George
Browse files

tests: Fix tests with sets to print sorted set.

parent ff715429
Branches
Tags
No related merge requests found
...@@ -5,4 +5,4 @@ print(list(i)) ...@@ -5,4 +5,4 @@ print(list(i))
i = iter(iter({1:2, 3:4, 5:6})) i = iter(iter({1:2, 3:4, 5:6}))
print(sorted(i)) print(sorted(i))
i = iter(iter({1, 2, 3})) i = iter(iter({1, 2, 3}))
print(list(i)) print(sorted(i))
...@@ -4,4 +4,4 @@ s = {1} ...@@ -4,4 +4,4 @@ s = {1}
print(s) print(s)
s = {3, 4, 3, 1} s = {3, 4, 3, 1}
print(s) print(sorted(s))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment