From d92f899cb5708f7309dda4fa9e0a17a660ccf9ee Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 8 Jan 2018 10:00:21 -0500 Subject: [PATCH] [1.8.x] Fixed GeoIP test failure with the latest data. --- tests/gis_tests/test_geoip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gis_tests/test_geoip.py b/tests/gis_tests/test_geoip.py index 0fe6ca61595..f3a8f83ff21 100644 --- a/tests/gis_tests/test_geoip.py +++ b/tests/gis_tests/test_geoip.py @@ -114,7 +114,7 @@ class GeoIPTest(unittest.TestCase): "Testing that GeoIP strings are properly encoded, see #16553." g = GeoIP() d = g.city("messe-duesseldorf.com") - self.assertEqual('Düsseldorf', d['city']) + self.assertEqual('Essen', d['city']) d = g.country('200.26.205.1') # Some databases have only unaccented countries self.assertIn(d['country_name'], ('Curaçao', 'Curacao'))