From 0466c098952e870eedd2fb760f50a16d38485862 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Sat, 19 Oct 2024 13:58:15 +0200 Subject: [PATCH] test_write_kml_file_coordinate_order(): make it compatible with GDAL 3.10 Fixes #488 --- pyogrio/tests/test_geopandas_io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyogrio/tests/test_geopandas_io.py b/pyogrio/tests/test_geopandas_io.py index 0675c197..112eef84 100644 --- a/pyogrio/tests/test_geopandas_io.py +++ b/pyogrio/tests/test_geopandas_io.py @@ -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(