Skip to content

Commit

Permalink
Merge pull request OSGeo#10777 from rouault/fix_ogr_ogrtest
Browse files Browse the repository at this point in the history
autotest/ogr/ogr_ogrtest.py: fix with GEOS 3.13
  • Loading branch information
rouault authored Sep 12, 2024
2 parents 25eb9f6 + 91e4f55 commit 63ed1ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autotest/ogr/ogr_ogrtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def test_check_geometry_equals_ngeoms_mismatch():

def test_check_geometry_equals_orientation_differs():
poly_ccw = ogr.CreateGeometryFromWkt("POLYGON ((0 0, 1 0, 1 1, 0 1, 0 0))")
poly_cw = ogr.CreateGeometryFromWkt("POLYGON ((0 0, 0 1, 1 1, 0 1, 0 0))")
poly_cw = ogr.CreateGeometryFromWkt("POLYGON ((0 0, 0 1, 1 1, 1 0, 0 0))")

if ogrtest.have_geos():
ogrtest.check_feature_geometry(poly_ccw, poly_cw)
Expand Down

0 comments on commit 63ed1ea

Please sign in to comment.