summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-08-03 11:08:30 -0400
committerTim Graham <timograham@gmail.com>2016-08-03 11:16:19 -0400
commitb2fa5312bb1c11db80ad55e3e03b2b834a4a14e6 (patch)
treefd62815286237cd9c674045af1f7b24e143edd48
parent9c97744a605073f4ec0d1f8bd45a536c558dc44a (diff)
downloaddjango-b2fa5312bb1c11db80ad55e3e03b2b834a4a14e6.tar.gz
[1.9.x] Fixed a GeoIP test failure with the latest data.
Backport of 4a696bbe13383b14b2762cc5accd45849e9dcfba from master
-rw-r--r--tests/gis_tests/test_geoip.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gis_tests/test_geoip.py b/tests/gis_tests/test_geoip.py
index 8dbda2c5d9..e95fef4496 100644
--- a/tests/gis_tests/test_geoip.py
+++ b/tests/gis_tests/test_geoip.py
@@ -134,10 +134,10 @@ class GeoIPTest(unittest.TestCase):
def test05_unicode_response(self):
"Testing that GeoIP strings are properly encoded, see #16553."
g = GeoIP()
- fqdn = "duesseldorf.de"
+ fqdn = "hs-duesseldorf.de"
if self._is_dns_available(fqdn):
d = g.city(fqdn)
- self.assertEqual('Ratingen', d['city'])
+ self.assertEqual('Düsseldorf', d['city'])
d = g.country('200.26.205.1')
# Some databases have only unaccented countries
self.assertIn(d['country_name'], ('Curaçao', 'Curacao'))