summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2016-08-09 18:46:14 +0200
committerClaude Paroz <claude@2xlibre.net>2016-08-09 18:46:28 +0200
commitade681b9ad2a97833cd3f06530fba01e51250b32 (patch)
tree2557938447d885fa5444161205ef6f4b145cbe98 /tests
parent79a9603ba87f4a84d2d538a199f351e044be7d5c (diff)
Unified SpatiaLite spelling
Diffstat (limited to 'tests')
-rw-r--r--tests/gis_tests/distapp/tests.py2
-rw-r--r--tests/gis_tests/geoapp/test_functions.py4
-rw-r--r--tests/gis_tests/inspectapp/tests.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/tests/gis_tests/distapp/tests.py b/tests/gis_tests/distapp/tests.py
index 71ab5265d6..fd4e6dfaca 100644
--- a/tests/gis_tests/distapp/tests.py
+++ b/tests/gis_tests/distapp/tests.py
@@ -448,7 +448,7 @@ ST_Perimeter(geom1) | OK | :-( (degr
================================
-Distance functions on Spatialite
+Distance functions on SpatiaLite
================================
| Projected Geometry | Lon/lat Geometry
diff --git a/tests/gis_tests/geoapp/test_functions.py b/tests/gis_tests/geoapp/test_functions.py
index c0e0a37ab3..1a1727dbbc 100644
--- a/tests/gis_tests/geoapp/test_functions.py
+++ b/tests/gis_tests/geoapp/test_functions.py
@@ -292,7 +292,7 @@ class GISFunctionsTests(TestCase):
qs = Track.objects.annotate(num_points=functions.NumPoints('line'))
self.assertEqual(qs.first().num_points, 2)
if spatialite or mysql:
- # Spatialite and MySQL can only count points on LineStrings
+ # SpatiaLite and MySQL can only count points on LineStrings
return
for c in Country.objects.annotate(num_points=functions.NumPoints('mpoly')):
@@ -321,7 +321,7 @@ class GISFunctionsTests(TestCase):
qs = Country.objects.annotate(point_on_surface=functions.PointOnSurface('mpoly'))
for country in qs:
- tol = 0.00001 # Spatialite might have WKT-translation-related precision issues
+ tol = 0.00001 # SpatiaLite might have WKT-translation-related precision issues
self.assertTrue(ref[country.name].equals_exact(country.point_on_surface, tol))
@skipUnlessDBFeature("has_Reverse_function")
diff --git a/tests/gis_tests/inspectapp/tests.py b/tests/gis_tests/inspectapp/tests.py
index feef59c586..75865997dc 100644
--- a/tests/gis_tests/inspectapp/tests.py
+++ b/tests/gis_tests/inspectapp/tests.py
@@ -187,7 +187,7 @@ def get_ogr_db_string():
except GDALException:
return None
- # SQLite/Spatialite in-memory databases
+ # SQLite/SpatiaLite in-memory databases
if db['NAME'] == ":memory:":
return None