Skip to content

Commit

Permalink
TST: test_write_kml_file_coordinate_order(): make it compatible with …
Browse files Browse the repository at this point in the history
…GDAL 3.10 (#489)
  • Loading branch information
rouault authored Oct 21, 2024
1 parent ab3486e commit fc555f0
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 fc555f0

Please sign in to comment.