We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46f3542 commit e873236Copy full SHA for e873236
autotest/ogr/ogr_geos.py
@@ -330,7 +330,13 @@ def test_ogr_geos_pointzm_empty():
330
331
# GEOS 3.12 returns MULTIPOINT ZM EMPTY, but also accept POINT ZM EMPTY
332
# to be future proof...
333
- assert g2.ExportToIsoWkt() in ("MULTIPOINT ZM EMPTY", "POINT ZM EMPTY")
+ # Also accept "POINT EMPTY", as returned by GEOS 3.13.1
334
+ # (cf https://github.com/libgeos/geos/issues/1248)
335
+ assert g2.ExportToIsoWkt() in (
336
+ "POINT EMPTY",
337
+ "MULTIPOINT ZM EMPTY",
338
+ "POINT ZM EMPTY",
339
+ )
340
341
342
###############################################################################
0 commit comments