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:46:53 -0500
commit740cdbea0496e519c1c3ab503c1c68f0e1198579 (patch)
tree6f2e5e9604ea1d035054326aaf11ca6e5845948b
parent39fe2713ffab2d26a770cd61dc2eed11bcf648ed (diff)
downloaddjango-740cdbea0496e519c1c3ab503c1c68f0e1198579.tar.gz
[1.9.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 b8a906075b..1f0a651bcc 100644
--- a/tests/gis_tests/test_geoip.py
+++ b/tests/gis_tests/test_geoip.py
@@ -134,7 +134,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'])