From b2fd092a124103c84688cbd2dad6520da96db77f Mon Sep 17 00:00:00 2001 From: Greg Martinez Date: Thu, 23 Sep 2021 21:19:29 -0700 Subject: [PATCH 1/2] renamed test_dictionary_is_unordered to test_dictionary_is_ordred --- python3/koans/about_dictionaries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python3/koans/about_dictionaries.py b/python3/koans/about_dictionaries.py index da1ed6bfe..739400146 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_dictionary_is_ordered(self): dict1 = { 'one': 'uno', 'two': 'dos' } dict2 = { 'two': 'dos', 'one': 'uno' } From c7cbdd7671fd6ed281198e8b2e5fc0a13a67aa91 Mon Sep 17 00:00:00 2001 From: Greg Martinez Date: Thu, 23 Sep 2021 21:35:37 -0700 Subject: [PATCH 2/2] renamed test_dictionary_is_ordered to test_comapring_dictionaries_with_different_order_of_keys --- python3/koans/about_dictionaries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python3/koans/about_dictionaries.py b/python3/koans/about_dictionaries.py index 739400146..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_ordered(self): + def test_comparing_dictionaries_with_different_order_of_keys(self): dict1 = { 'one': 'uno', 'two': 'dos' } dict2 = { 'two': 'dos', 'one': 'uno' }