fccf4c4a5074 — Greg Malcolm 11 years ago
Pushing github change from Anderson Dias: To use 'sorted' it makes more sense to have an unordered set instead of a ordered one
1 files changed, 1 insertions(+), 1 deletions(-)

M python 2/koans/about_sets.py
M python 2/koans/about_sets.py +1 -1
@@ 15,7 15,7 @@ class AboutSets(Koan):
         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')))
         
 
     # ------------------------------------------------------------------