Fixed a brittle test in the `LayerMapping` tests.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16741 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Justin Bronn 2011-09-09 19:51:06 +00:00
parent fb590bfa9b
commit 6273db307e
1 changed files with 2 additions and 2 deletions

View File

@ -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."