diff --git a/autotest/ogr/ogr_dxf.py b/autotest/ogr/ogr_dxf.py index 3075dfdb510c..a7570c3fe3c0 100644 --- a/autotest/ogr/ogr_dxf.py +++ b/autotest/ogr/ogr_dxf.py @@ -438,7 +438,7 @@ def test_ogr_dxf_12(tmp_path): dst_feat.SetGeometryDirectly(ogr.CreateGeometryFromWkt("LINESTRING(10 12, 60 65)")) dst_feat.SetFID(0) lyr.CreateFeature(dst_feat) - # 80 is the minimum handle value we set in case of inapproriate or unsed + # 80 is the minimum handle value we set in case of inapproriate or unset # initial FID value assert dst_feat.GetFID() >= 80 dst_feat = None diff --git a/autotest/ogr/ogr_gpkg.py b/autotest/ogr/ogr_gpkg.py index e187da0a7b50..3d8ad7ceb46a 100755 --- a/autotest/ogr/ogr_gpkg.py +++ b/autotest/ogr/ogr_gpkg.py @@ -10138,7 +10138,7 @@ def test_ogr_gpkg_arrow_stream_huge_array(tmp_vsimem, too_big_field): expected_fids = [i + 1 for i in range(50)] if "CI" in os.environ and got_fids != expected_fids: pytest.xfail( - f"Random failure on CI occured in test_ogr_gpkg_arrow_stream_huge_array[{too_big_field}]. Expected {expected_fids}, got {got_fids}" + f"Random failure on CI occurred in test_ogr_gpkg_arrow_stream_huge_array[{too_big_field}]. Expected {expected_fids}, got {got_fids}" ) assert got_fids == expected_fids assert batch_count == (25 if too_big_field == "geometry" else 21), lyr_name