summaryrefslogtreecommitdiff
path: root/tests/gis_tests
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2021-01-29 11:00:12 +0100
committerGitHub <noreply@github.com>2021-01-29 11:00:12 +0100
commit135c800fe6138d7818501a384c0ebbdc5442762c (patch)
tree17f6571b78d2cce173191e8447e7b17c4ced211a /tests/gis_tests
parent59e503b6708d41a44f2aa320272de3e2ecb5d65c (diff)
downloaddjango-135c800fe6138d7818501a384c0ebbdc5442762c.tar.gz
Fixed GeoIPTest.test04_city() failure with the latest GeoIP2 database.
Diffstat (limited to 'tests/gis_tests')
-rw-r--r--tests/gis_tests/test_geoip2.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/gis_tests/test_geoip2.py b/tests/gis_tests/test_geoip2.py
index 294d875ac8..91bba2e8ff 100644
--- a/tests/gis_tests/test_geoip2.py
+++ b/tests/gis_tests/test_geoip2.py
@@ -20,8 +20,8 @@ if HAS_GEOIP2:
"GeoIP is required along with the GEOIP_PATH setting."
)
class GeoIPTest(SimpleTestCase):
- addr = '75.41.39.1'
- fqdn = 'tmc.edu'
+ addr = '129.237.192.1'
+ fqdn = 'ku.edu'
def test01_init(self):
"GeoIP initialization."
@@ -105,7 +105,7 @@ class GeoIPTest(SimpleTestCase):
@mock.patch('socket.gethostbyname')
def test04_city(self, gethostbyname):
"GeoIP city querying methods."
- gethostbyname.return_value = '75.41.39.1'
+ gethostbyname.return_value = '129.237.192.1'
g = GeoIP2(country='<foo>')
for query in (self.fqdn, self.addr):
@@ -130,8 +130,8 @@ class GeoIPTest(SimpleTestCase):
self.assertEqual('NA', d['continent_code'])
self.assertEqual('North America', d['continent_name'])
self.assertEqual('US', d['country_code'])
- self.assertEqual('Dallas', d['city'])
- self.assertEqual('TX', d['region'])
+ self.assertEqual('Lawrence', d['city'])
+ self.assertEqual('KS', d['region'])
self.assertEqual('America/Chicago', d['time_zone'])
self.assertFalse(d['is_in_european_union'])
geom = g.geos(query)