From 76d79a2c59bb4129f3575aae3b6613f3bdc784fc Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Tue, 30 Apr 2024 12:33:17 -0700 Subject: [PATCH] Troubleshooting result languages --- tests/test_map_maker_api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_map_maker_api.py b/tests/test_map_maker_api.py index c013fdd..531246c 100644 --- a/tests/test_map_maker_api.py +++ b/tests/test_map_maker_api.py @@ -72,7 +72,7 @@ def test_geocode_lookup(self): # Test language valid_es_location = self.api.handle_query(address=VALID_ADDRESS, - lang_code="es-mx") + lang_code="es-us") self.assertEqual(valid_es_location['status_code'], 200) self.assertEqual(valid_es_location["encoding"].lower(), "utf-8") es_location = json.loads(valid_es_location["content"])[0] @@ -93,7 +93,7 @@ def test_reverse_lookup(self): # Test language valid_es_location = self.api.handle_query(lat=VALID_LAT, lon=VALID_LON, - lang_code="es-mx") + lang_code="es") self.assertEqual(valid_es_location['status_code'], 200) self.assertEqual(valid_es_location["encoding"].lower(), "utf-8") es_location = json.loads(valid_es_location["content"])['address']