[1.11.x] Fixed GeoQuerySetTest.test_unionagg_tolerance() test on Oracle 18c.

Backport of 5ca76baa72 from master
This commit is contained in:
Mariusz Felisiak 2020-03-05 08:55:34 +01:00
parent 51a6edc4b0
commit c669cf279a
1 changed files with 2 additions and 1 deletions

View File

@ -899,10 +899,11 @@ class GeoQuerySetTest(TestCase):
srid=4326,
)
self.assertIs(
forney_houston.equals(
forney_houston.equals_exact(
City.objects.filter(point__within=tx).aggregate(
Union('point', tolerance=32000),
)['point__union'],
tolerance=10e-6,
),
True,
)