summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/gis_tests/geoapp/test_functions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gis_tests/geoapp/test_functions.py b/tests/gis_tests/geoapp/test_functions.py
index 777e17420e..047c7f9036 100644
--- a/tests/gis_tests/geoapp/test_functions.py
+++ b/tests/gis_tests/geoapp/test_functions.py
@@ -122,7 +122,7 @@ class GISFunctionsTests(FuncTestMixin, TestCase):
@skipUnlessDBFeature("has_AsGeoJSON_function")
def test_asgeojson_option_0(self):
p1 = Point(1, 1, srid=4326)
- p2 = Point(2, 2, srid=4326)
+ p2 = Point(-87.65018, 41.85039, srid=4326)
obj = ManyPointModel.objects.create(
point1=p1,
point2=p2,
@@ -134,7 +134,7 @@ class GISFunctionsTests(FuncTestMixin, TestCase):
.geojson,
# GeoJSON without CRS.
json.loads(
- '{"type":"Point","coordinates":[222638.98158655,222684.20850554]}'
+ '{"type":"Point","coordinates":[-9757173.40553877, 5138594.87034608]}'
),
)