Commit ef65854a authored by Justin Bronn's avatar Justin Bronn
Browse files

Fixed a brittle test case that was failing on PostGIS versions < 1.4.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@11729 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 36fe303e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -33,4 +33,6 @@ class GeoRegressionTests(unittest.TestCase):
        "Testing `extent` on a table with a single point, see #11827."
        pnt = City.objects.get(name='Pueblo').point
        ref_ext = (pnt.x, pnt.y, pnt.x, pnt.y)
        self.assertEqual(ref_ext, City.objects.filter(name='Pueblo').extent())
        extent = City.objects.filter(name='Pueblo').extent()
        for ref_val, val in zip(ref_ext, extent):
            self.assertAlmostEqual(ref_val, val, 4)