Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Conengmo committed Nov 7, 2022
1 parent 1ef23cf commit 39b9ab3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_folium.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def test_tilelayer_object(self):
url = "http://{s}.custom_tiles.org/{z}/{x}/{y}.png"
attr = "Attribution for custom tiles"
m = folium.Map(location=[45.52, -122.67], tiles=TileLayer(url, attr=attr))
assert m._children[url].tiles == url
assert next(iter(m._children.values())).tiles == url
assert attr in m._parent.render()

def test_feature_group(self):
Expand Down

0 comments on commit 39b9ab3

Please sign in to comment.