mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Fixed capitalization of "Spherical Mercator."
This commit is contained in:
parent
0ab1dc0a8b
commit
63d2472b10
3 changed files with 2 additions and 3 deletions
|
@ -204,7 +204,7 @@ class GISFunctionsTests(TestCase):
|
|||
@skipUnlessDBFeature("has_Difference_function", "has_Transform_function")
|
||||
def test_difference_mixed_srid(self):
|
||||
"""Testing with mixed SRID (Country has default 4326)."""
|
||||
geom = Point(556597.4, 2632018.6, srid=3857) # Spherical mercator
|
||||
geom = Point(556597.4, 2632018.6, srid=3857) # Spherical Mercator
|
||||
qs = Country.objects.annotate(difference=functions.Difference('mpoly', geom))
|
||||
# Oracle does something screwy with the Texas geometry.
|
||||
if oracle:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue