diff options
| author | Tim Graham <timograham@gmail.com> | 2016-07-19 07:56:15 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-07-19 09:28:39 -0400 |
| commit | 53d17f9e75e5abffa43c2fbed929f703d3f0e7e8 (patch) | |
| tree | 651b9eaec0fb6ba01c1b6ff5199b8f548241a9fd | |
| parent | 658f545b0c979e0355ceb6631edcc06446c37530 (diff) | |
[1.10.x] Fixed a GeoIP test failure with the latest data.
Backport of 081fdaf110386db940d834ba51d93e23aa293fcd from master
| -rw-r--r-- | tests/gis_tests/test_geoip.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gis_tests/test_geoip.py b/tests/gis_tests/test_geoip.py index 02494f88b6..8b573b7b05 100644 --- a/tests/gis_tests/test_geoip.py +++ b/tests/gis_tests/test_geoip.py @@ -136,8 +136,8 @@ class GeoIPTest(unittest.TestCase): lat_lon = g.lat_lon(query) lat_lon = (lat_lon[1], lat_lon[0]) for tup in (geom.tuple, g.coords(query), g.lon_lat(query), lat_lon): - self.assertAlmostEqual(lon, tup[0], 4) - self.assertAlmostEqual(lat, tup[1], 4) + self.assertAlmostEqual(lon, tup[0], 0) + self.assertAlmostEqual(lat, tup[1], 0) def test05_unicode_response(self): "Testing that GeoIP strings are properly encoded, see #16553." |
