Skip to content

Commit b4ea8aa

Browse files
committed
fix test with proj 9.8.1
1 parent 4f82cdb commit b4ea8aa

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test_folium.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ def test_choropleth_geopandas_numeric(self):
269269
geo_data = json.load(f)
270270

271271
geo_data_frame = gpd.GeoDataFrame.from_features(geo_data["features"])
272-
geo_data_frame = geo_data_frame.set_crs("epsg: 4326")
272+
geo_data_frame = geo_data_frame.set_crs("epsg:4326")
273273
fill_color = "BuPu"
274274
key_on = "feature.id"
275275

@@ -300,7 +300,7 @@ def test_choropleth_geopandas_mixed(self):
300300
geo_data = json.load(f)
301301

302302
geo_data_frame = gpd.GeoDataFrame.from_features(geo_data["features"])
303-
geo_data_frame = geo_data_frame.set_crs("epsg: 4326")
303+
geo_data_frame = geo_data_frame.set_crs("epsg:4326")
304304
data = pd.DataFrame(
305305
{
306306
"idx": {"0": 0, "1": "1", "2": 2, "3": 3, "4": 4, "5": 5},
@@ -346,7 +346,7 @@ def test_choropleth_geopandas_str(self):
346346
geo_data = json.load(f)
347347

348348
geo_data_frame = gpd.GeoDataFrame.from_features(geo_data["features"])
349-
geo_data_frame = geo_data_frame.set_crs("epsg: 4326")
349+
geo_data_frame = geo_data_frame.set_crs("epsg:4326")
350350
data = pd.DataFrame(
351351
{
352352
"idx": {"0": "0", "1": "1", "2": "2", "3": "3", "4": "4", "5": "5"},

0 commit comments

Comments
 (0)