Commit 6273db30 authored by Justin Bronn's avatar Justin Bronn
Browse files

Fixed a brittle test in the `LayerMapping` tests.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16741 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent fb590bfa
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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."