@@ -189,7 +189,7 @@ def test_coverage_with_interval():
189189
190190 assert str (cov_expr ) == (
191191 "for $cov1 in (cov1)\n return\n "
192- "(coverage intervalCoverage over $pt time(0: 10) values $cov1[time($pt)])"
192+ "(coverage intervalCoverage over $pt time(0 : 10) values $cov1[time($pt)])"
193193 )
194194
195195
@@ -204,7 +204,7 @@ def test_coverage_with_interval_and_params():
204204 .params ('{ "configOptions": { "GDAL_CACHEMAX": "64" } }' ))
205205 expected_query = (
206206 'for $cov1 in (cov1)\n return\n '
207- 'encode((coverage intervalCoverage over $pt time(0: 10) values $cov1[time($pt)]), '
207+ 'encode((coverage intervalCoverage over $pt time(0 : 10) values $cov1[time($pt)]), '
208208 '"GTiff", "{ \\ "configOptions\\ ": { \\ "GDAL_CACHEMAX\\ ": \\ "64\\ " } }")'
209209 )
210210
@@ -229,8 +229,8 @@ def test_clip_linestring1():
229229 ' "2008-01-08T00:02:58.000Z" 705042.727359 5454865.55794)' )
230230 clip_expr = Clip (cov1 , wkt_linestring )
231231 expected_query = ("for $cov1 in (cov1)\n return\n "
232- f "clip($cov1, LINESTRING(\" 2008-01-01T02:01:20.000Z\" 75042.7273594 5094865.55794, "
233- f "\" 2008-01-08T00:02:58.000Z\" 705042.727359 5454865.55794))" )
232+ "clip($cov1, LINESTRING(\" 2008-01-01T02:01:20.000Z\" 75042.7273594 5094865.55794, "
233+ "\" 2008-01-08T00:02:58.000Z\" 705042.727359 5454865.55794))" )
234234 assert str (clip_expr ) == expected_query
235235
236236
0 commit comments