diff --git a/python3/koans/about_dictionaries.py b/python3/koans/about_dictionaries.py index da1ed6bfe..f772811b0 100644 --- a/python3/koans/about_dictionaries.py +++ b/python3/koans/about_dictionaries.py @@ -32,7 +32,7 @@ def test_changing_dictionaries(self): expected = { 'two': 'dos', 'one': __ } self.assertDictEqual(expected, babel_fish) - def test_dictionary_is_unordered(self): + def test_comparing_dictionaries_with_different_order_of_keys(self): dict1 = { 'one': 'uno', 'two': 'dos' } dict2 = { 'two': 'dos', 'one': 'uno' }