Commit e31945a2 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #7303 -- Clarified a test case that was dependent on dict ordering....

Fixed #7303 -- Clarified a test case that was dependent on dict ordering. Thanks to leosoto for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7890 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent bbb38436
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -44,8 +44,8 @@
>>> d.keys()
[2, 1]
>>> real_dict = dict(tuples)
>>> real_dict.values()
>>> sorted(real_dict.values())
['one', 'second-two']
>>> d.values()
>>> d.values() # Here the order of SortedDict values *is* what we are testing
['second-two', 'one']
"""
 No newline at end of file