From b4ea8aa12d0808536c4f50b63eddd006e68680cb Mon Sep 17 00:00:00 2001 From: Augustin Trancart Date: Fri, 15 May 2026 14:12:36 +0200 Subject: [PATCH] fix test with proj 9.8.1 --- tests/test_folium.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_folium.py b/tests/test_folium.py index 6b3b95fb0d..e424d277c7 100644 --- a/tests/test_folium.py +++ b/tests/test_folium.py @@ -269,7 +269,7 @@ def test_choropleth_geopandas_numeric(self): geo_data = json.load(f) geo_data_frame = gpd.GeoDataFrame.from_features(geo_data["features"]) - geo_data_frame = geo_data_frame.set_crs("epsg: 4326") + geo_data_frame = geo_data_frame.set_crs("epsg:4326") fill_color = "BuPu" key_on = "feature.id" @@ -300,7 +300,7 @@ def test_choropleth_geopandas_mixed(self): geo_data = json.load(f) geo_data_frame = gpd.GeoDataFrame.from_features(geo_data["features"]) - geo_data_frame = geo_data_frame.set_crs("epsg: 4326") + geo_data_frame = geo_data_frame.set_crs("epsg:4326") data = pd.DataFrame( { "idx": {"0": 0, "1": "1", "2": 2, "3": 3, "4": 4, "5": 5}, @@ -346,7 +346,7 @@ def test_choropleth_geopandas_str(self): geo_data = json.load(f) geo_data_frame = gpd.GeoDataFrame.from_features(geo_data["features"]) - geo_data_frame = geo_data_frame.set_crs("epsg: 4326") + geo_data_frame = geo_data_frame.set_crs("epsg:4326") data = pd.DataFrame( { "idx": {"0": "0", "1": "1", "2": "2", "3": "3", "4": "4", "5": "5"},