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"},