diff options
| -rw-r--r-- | django/contrib/gis/tests/layermap/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/contrib/gis/tests/layermap/tests.py b/django/contrib/gis/tests/layermap/tests.py index 0480e43dc8..8b65577d86 100644 --- a/django/contrib/gis/tests/layermap/tests.py +++ b/django/contrib/gis/tests/layermap/tests.py @@ -79,8 +79,8 @@ class LayerMapTest(TestCase): # Comparing the geometries. pnt1, pnt2 = feat.geom, city.point - self.assertAlmostEqual(pnt1.x, pnt2.x, 6) - self.assertAlmostEqual(pnt1.y, pnt2.y, 6) + self.assertAlmostEqual(pnt1.x, pnt2.x, 5) + self.assertAlmostEqual(pnt1.y, pnt2.y, 5) def test03_layermap_strict(self): "Testing the `strict` keyword, and import of a LineString shapefile." |
