summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorpieterck <pieterceka123@gmail.com>2023-10-03 15:47:00 +0700
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-10-05 18:15:47 +0200
commit72a2044b4062876895122d801bbfd65a0f59abb0 (patch)
treeb689cd860a3a84fe3f3ed9e054f2d10f5facf67e /tests
parent6e7c8cc42e29bc14e7951977977bd510ff9dc3f5 (diff)
[5.0.x] Fixed #34759 -- Confirmed support for SpatiaLite 5.1.
Thanks The Epic Dev for helping with tests. Backport of 0989cf13e70f52d5b241aa176eb74a680a282d09 from main.
Diffstat (limited to 'tests')
-rw-r--r--tests/gis_tests/geoapp/test_functions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gis_tests/geoapp/test_functions.py b/tests/gis_tests/geoapp/test_functions.py
index e9e2a5dcae..b75f053b3d 100644
--- a/tests/gis_tests/geoapp/test_functions.py
+++ b/tests/gis_tests/geoapp/test_functions.py
@@ -141,7 +141,7 @@ class GISFunctionsTests(FuncTestMixin, TestCase):
)
else:
gml_regex = re.compile(
- r'^<gml:Point srsName="EPSG:4326"><gml:coordinates>'
+ r'^<gml:Point srsName="(urn:ogc:def:crs:)?EPSG:4326"><gml:coordinates>'
r"-104\.60925\d+,38\.255001</gml:coordinates></gml:Point>"
)
self.assertTrue(gml_regex.match(ptown.gml))