diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-01-29 11:00:12 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-01-29 11:03:04 +0100 |
| commit | 03a86784d0dbfc5890f5aaba2d2f29c1deb0009d (patch) | |
| tree | d116101405fc808e26829a438a36960ad63bde64 | |
| parent | a271d8c15cb73fde5e78d429b5d0c906eb300750 (diff) | |
[3.1.x] Fixed GeoIPTest.test04_city() failure with the latest GeoIP2 database.
Backport of 135c800fe6138d7818501a384c0ebbdc5442762c from master
| -rw-r--r-- | tests/gis_tests/test_geoip2.py | 10 |
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) |
