Skip to content

Commit

Permalink
Consistent ordering.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Rossi committed Jan 9, 2013
1 parent b479dbc commit b4ded97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion churro/tests.py
Expand Up @@ -90,7 +90,7 @@ def test_folder_ops(self):

self.assertEqual(len(root), 2)
self.assertEqual(sorted(root.keys()), ['a', 'b'])
self.assertEqual(list(iter(root)), ['a', 'b'])
self.assertEqual(sorted(iter(root)), ['a', 'b'])
self.assertEqual(list(root.values()), [a, b])
self.assertEqual(list(root.items()), [('a', a), ('b', b)])
self.assertTrue(bool(root))
Expand Down

0 comments on commit b4ded97

Please sign in to comment.