Skip to content

Commit 389b85a

Browse files
committed
fix geopandas 1.0 deprecation
1 parent 5abfc77 commit 389b85a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/plugins/test_time_slider_choropleth.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ def test_timedynamic_geo_json():
2222
"""
2323
tests folium.plugins.TimeSliderChoropleth
2424
"""
25+
import geodatasets
2526
import geopandas as gpd
2627

27-
assert "naturalearth_lowres" in gpd.datasets.available
28-
datapath = gpd.datasets.get_path("naturalearth_lowres")
28+
datapath = geodatasets.get_path("naturalearth land")
2929
gdf = gpd.read_file(datapath)
3030

3131
"""

0 commit comments

Comments
 (0)