summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-02-14 09:05:55 -0500
committerTim Graham <timograham@gmail.com>2017-02-14 09:11:11 -0500
commit3b562ebfe6ad39f8eb346360327ef457d4624d08 (patch)
treed2b39f5021d064fc34c7d1788f67568d1024fe5d
parent5044d18e1fca657628a407542f9f76e00cab3262 (diff)
downloaddjango-3b562ebfe6ad39f8eb346360327ef457d4624d08.tar.gz
[1.10.x] Fixed GeoIP test failure with the latest data.
Backport of da2e92d25ea32a25679d99525365ac7ac8e297ee from stable/1.11.x
-rw-r--r--tests/gis_tests/test_geoip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gis_tests/test_geoip.py b/tests/gis_tests/test_geoip.py
index 4871386ef8..fa0df950b6 100644
--- a/tests/gis_tests/test_geoip.py
+++ b/tests/gis_tests/test_geoip.py
@@ -142,7 +142,7 @@ class GeoIPTest(unittest.TestCase):
def test05_unicode_response(self):
"Testing that GeoIP strings are properly encoded, see #16553."
g = GeoIP()
- fqdn = "hs-duesseldorf.de"
+ fqdn = "messe-duesseldorf.com"
if self._is_dns_available(fqdn):
d = g.city(fqdn)
self.assertEqual('Düsseldorf', d['city'])