We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d21ab70 commit 6e369f3Copy full SHA for 6e369f3
tests/gis_tests/geoapp/test_functions.py
@@ -122,7 +122,7 @@ def test_asgeojson(self):
122
@skipUnlessDBFeature("has_AsGeoJSON_function")
123
def test_asgeojson_option_0(self):
124
p1 = Point(1, 1, srid=4326)
125
- p2 = Point(2, 2, srid=4326)
+ p2 = Point(-87.65018, 41.85039, srid=4326)
126
obj = ManyPointModel.objects.create(
127
point1=p1,
128
point2=p2,
@@ -134,7 +134,7 @@ def test_asgeojson_option_0(self):
134
.geojson,
135
# GeoJSON without CRS.
136
json.loads(
137
- '{"type":"Point","coordinates":[222638.98158655,222684.20850554]}'
+ '{"type":"Point","coordinates":[-9757173.40553877, 5138594.87034608]}'
138
),
139
)
140
0 commit comments