# HG changeset patch # User Greg Malcolm # Date 1319282554 14400 # Sat Oct 22 07:22:34 2011 -0400 # Node ID fccf4c4a5074cf12ba71dd99567c14304737b1be # Parent 68786bafa0f5c247212436fbaaca8e8a75c08db5 Pushing github change from Anderson Dias: To use 'sorted' it makes more sense to have an unordered set instead of a ordered one diff --git a/python 2/koans/about_sets.py b/python 2/koans/about_sets.py --- a/python 2/koans/about_sets.py +++ b/python 2/koans/about_sets.py @@ -15,7 +15,7 @@ self.assertEqual(set([__, __, __, __, __]), set('12345')) def test_convert_the_set_into_a_list_to_sort_it(self): - self.assertEqual(__, sorted(set('12345'))) + self.assertEqual(__, sorted(set('13245'))) # ------------------------------------------------------------------