From 8032ea9ac039bafeb5fc5897a727869e0b439d4d Mon Sep 17 00:00:00 2001 From: Richard Penman <{ID}+{username}@users.noreply.github.com> Date: Fri, 7 Jun 2024 06:23:29 +0800 Subject: [PATCH] add state to test case --- test_reverse_geocode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_reverse_geocode.py b/test_reverse_geocode.py index 374aa01..bfd0d10 100644 --- a/test_reverse_geocode.py +++ b/test_reverse_geocode.py @@ -9,8 +9,8 @@ def test_wordpress(self): self.assertEqual( results, [ - {"city": "Melbourne", "country_code": "AU", "country": "Australia"}, - {"city": "Jerusalem", "country_code": "IL", "country": "Israel"}, + {"city": "Melbourne", "country_code": "AU", "country": "Australia", "state": "Victoria"}, + {"city": "Jerusalem", "country_code": "IL", "country": "Israel", "state": "Jerusalem"}, ], )