From b4dea46d8b634fdfd3402b0caffa10d67461d281 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sun, 6 Apr 2014 21:28:44 +0300 Subject: tests: Fix few tests which depend on order of elements in dict. With dict being unordered of course. --- tests/basics/dict_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/basics/dict_update.py') diff --git a/tests/basics/dict_update.py b/tests/basics/dict_update.py index e7ae0bd965..46d1f41b5f 100644 --- a/tests/basics/dict_update.py +++ b/tests/basics/dict_update.py @@ -1,5 +1,5 @@ d = {1:2, 3:4} -print(d) +print(len(d)) d.update(["ab"]) print(d[1]) print(d[3]) -- cgit v1.2.3