summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/set1.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-04-07 00:42:09 +0100
committerDamien George <damien.p.george@gmail.com>2014-04-07 00:42:09 +0100
commit07e24a629477246fb8f363071880e4a2c9cabeb7 (patch)
treebd1a9e97f8101c0bafea8947da76d2b632313a9b /tests/basics/set1.py
parentff715429eae825108d26db942284373762f85674 (diff)
downloadmicropython-07e24a629477246fb8f363071880e4a2c9cabeb7.tar.gz
micropython-07e24a629477246fb8f363071880e4a2c9cabeb7.zip
tests: Fix tests with sets to print sorted set.
Diffstat (limited to 'tests/basics/set1.py')
-rw-r--r--tests/basics/set1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basics/set1.py b/tests/basics/set1.py
index c54fbd8379..399c33eb68 100644
--- a/tests/basics/set1.py
+++ b/tests/basics/set1.py
@@ -4,4 +4,4 @@ s = {1}
print(s)
s = {3, 4, 3, 1}
-print(s)
+print(sorted(s))