1
0
Fork 0
mirror of https://github.com/matomo-org/matomo-icons.git synced 2024-09-19 17:03:45 +02:00

fix tests for brands with space in name

This commit is contained in:
Lukas Winkler 2017-11-22 16:55:54 +01:00
parent 72dc5989ba
commit a1f25b51cd

View file

@ -223,7 +223,7 @@ def test_if_there_are_icons_for_all_device_detector_categories():
for name, category in categories.items():
for code in category:
if name == "brand":
slug = category[code]
slug = category[code].replace(" ", "_")
else:
slug = code
found = False