tests: Fix few tests which depend on order of elements in dict.

With dict being unordered of course.
This commit is contained in:
Paul Sokolovsky
2014-04-06 21:28:44 +03:00
parent e2adff3608
commit b4dea46d8b
5 changed files with 16 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
d = {1:2, 3:4}
print(d)
print(len(d))
d.update(["ab"])
print(d[1])
print(d[3])