Skip to content

Commit

Permalink
typo fixes [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Nov 24, 2024
1 parent 4b88650 commit f39fcb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion autotest/ogr/ogr_dxf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion autotest/ogr/ogr_gpkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f39fcb4

Please sign in to comment.