summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/gis_tests/geoapp/tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/gis_tests/geoapp/tests.py b/tests/gis_tests/geoapp/tests.py
index 7eff87693d..39ab1790bc 100644
--- a/tests/gis_tests/geoapp/tests.py
+++ b/tests/gis_tests/geoapp/tests.py
@@ -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,
)