Commit 074b39da authored by Stefan Behnel's avatar Stefan Behnel

minor test fix (copy+paste bug)

parent f873e304
...@@ -156,7 +156,7 @@ def test_set_of_tuple(): ...@@ -156,7 +156,7 @@ def test_set_of_tuple():
>>> sorted(s) >>> sorted(s)
[1, 2, 3] [1, 2, 3]
""" """
return set([1, 2, 3]) return set((1, 2, 3))
def sorted(it): def sorted(it):
# Py3 can't compare strings to ints # Py3 can't compare strings to ints
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment