Relaxed assertions to fix GIS test failures on Oracle 18c.
This commit is contained in:
parent
b181aba7dd
commit
1508e71c5b
|
@ -14,15 +14,19 @@ class GeoRegressionTests(TestCase):
|
||||||
|
|
||||||
def test_update(self):
|
def test_update(self):
|
||||||
"Testing QuerySet.update() (#10411)."
|
"Testing QuerySet.update() (#10411)."
|
||||||
pnt = City.objects.get(name='Pueblo').point
|
pueblo = City.objects.get(name='Pueblo')
|
||||||
bak = pnt.clone()
|
bak = pueblo.point.clone()
|
||||||
pnt.y += 0.005
|
pueblo.point.y += 0.005
|
||||||
pnt.x += 0.005
|
pueblo.point.x += 0.005
|
||||||
|
|
||||||
City.objects.filter(name='Pueblo').update(point=pnt)
|
City.objects.filter(name='Pueblo').update(point=pueblo.point)
|
||||||
self.assertEqual(pnt, City.objects.get(name='Pueblo').point)
|
pueblo.refresh_from_db()
|
||||||
|
self.assertAlmostEqual(bak.y + 0.005, pueblo.point.y, 6)
|
||||||
|
self.assertAlmostEqual(bak.x + 0.005, pueblo.point.x, 6)
|
||||||
City.objects.filter(name='Pueblo').update(point=bak)
|
City.objects.filter(name='Pueblo').update(point=bak)
|
||||||
self.assertEqual(bak, City.objects.get(name='Pueblo').point)
|
pueblo.refresh_from_db()
|
||||||
|
self.assertAlmostEqual(bak.y, pueblo.point.y, 6)
|
||||||
|
self.assertAlmostEqual(bak.x, pueblo.point.x, 6)
|
||||||
|
|
||||||
def test_kmz(self):
|
def test_kmz(self):
|
||||||
"Testing `render_to_kmz` with non-ASCII data. See #11624."
|
"Testing `render_to_kmz` with non-ASCII data. See #11624."
|
||||||
|
|
|
@ -32,7 +32,8 @@ class RelatedGeoModelTest(TestCase):
|
||||||
nm, st, lon, lat = ref
|
nm, st, lon, lat = ref
|
||||||
self.assertEqual(nm, c.name)
|
self.assertEqual(nm, c.name)
|
||||||
self.assertEqual(st, c.state)
|
self.assertEqual(st, c.state)
|
||||||
self.assertEqual(Point(lon, lat, srid=c.location.point.srid), c.location.point)
|
self.assertAlmostEqual(lon, c.location.point.x, 6)
|
||||||
|
self.assertAlmostEqual(lat, c.location.point.y, 6)
|
||||||
|
|
||||||
@skipUnlessDBFeature("supports_extent_aggr")
|
@skipUnlessDBFeature("supports_extent_aggr")
|
||||||
def test_related_extent_aggregate(self):
|
def test_related_extent_aggregate(self):
|
||||||
|
|
Loading…
Reference in New Issue