We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80be994 commit 00a1dfeCopy full SHA for 00a1dfe
1 file changed
tests/test_folium.py
@@ -459,11 +459,9 @@ def test_topo_json(self):
459
460
self.map = folium.Map([43, -100], zoom_start=4)
461
462
- path = os.path.join(rootpath, 'us-counties.json')
463
-
464
# Adding TopoJSON as additional layer.
465
- path_2 = 'or_counties_topo.json'
466
- self.map.geo_json(geo_path=path_2, topojson='objects.or_counties_geo')
+ path = os.path.join(rootpath, 'or_counties_topo.json')
+ self.map.geo_json(geo_path=path, topojson='objects.or_counties_geo')
467
468
out = self.map._parent.render()
469
0 commit comments