mirror of
https://github.com/micropython/micropython.git
synced 2026-01-07 12:40:15 +01:00
tests: Fix few tests which depend on order of elements in dict.
With dict being unordered of course.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
d = {1:2, 3:4}
|
||||
print(d)
|
||||
print(len(d))
|
||||
d.update(["ab"])
|
||||
print(d[1])
|
||||
print(d[3])
|
||||
|
||||
Reference in New Issue
Block a user