Skip to content

Commit

Permalink
test_write_kml_file_coordinate_order(): make it compatible with GDAL …
Browse files Browse the repository at this point in the history
…3.10

Fixes geopandas#488
  • Loading branch information
rouault committed Oct 19, 2024
1 parent ab3486e commit 0466c09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyogrio/tests/test_geopandas_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -2257,7 +2257,7 @@ def test_write_kml_file_coordinate_order(tmp_path, use_arrow):
if "LIBKML" in list_drivers():
# test appending to the existing file only if LIBKML is available
# as it appears to fall back on LIBKML driver when appending.
points_append = [Point(70, 80), Point(90, 100), Point(110, 120)]
points_append = [Point(7, 8), Point(9, 10), Point(11, 12)]
gdf_append = gp.GeoDataFrame(geometry=points_append, crs="EPSG:4326")

write_dataframe(
Expand Down

0 comments on commit 0466c09

Please sign in to comment.