Commit 0ab8c58c authored by Brian Galey's avatar Brian Galey Committed by Claude Paroz
Browse files

Fixed #18968 -- Only use separate GML regex for SpatiaLite < 3.0

parent 2aaa467a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -520,8 +520,8 @@ class GeoQuerySetTest(TestCase):
        if oracle:
            # No precision parameter for Oracle :-/
            gml_regex = re.compile(r'^<gml:Point srsName="SDO:4326" xmlns:gml="http://www.opengis.net/gml"><gml:coordinates decimal="\." cs="," ts=" ">-104.60925\d+,38.25500\d+ </gml:coordinates></gml:Point>')
        elif spatialite:
            # Spatialite has extra colon in SrsName
        elif spatialite and connection.ops.spatial_version < (3, 0, 0):
            # Spatialite before 3.0 has extra colon in SrsName
            gml_regex = re.compile(r'^<gml:Point SrsName="EPSG::4326"><gml:coordinates decimal="\." cs="," ts=" ">-104.609251\d+,38.255001</gml:coordinates></gml:Point>')
        else:
            gml_regex = re.compile(r'^<gml:Point srsName="EPSG:4326"><gml:coordinates>-104\.60925\d+,38\.255001</gml:coordinates></gml:Point>')