diff options
| author | Tim Graham <timograham@gmail.com> | 2018-01-08 10:00:21 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-01-08 10:00:21 -0500 |
| commit | d92f899cb5708f7309dda4fa9e0a17a660ccf9ee (patch) | |
| tree | 6cd71c5676648c409728ca79b14595dbb4e0bf1a | |
| parent | e0b368183891746f98d3ddd730831ccf3c88f644 (diff) | |
[1.8.x] Fixed GeoIP test failure with the latest data.
| -rw-r--r-- | tests/gis_tests/test_geoip.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gis_tests/test_geoip.py b/tests/gis_tests/test_geoip.py index 0fe6ca6159..f3a8f83ff2 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')) |
