Fix check_taginfo.py test for maxspeed tag in lower case
This commit is contained in:
parent
f9fb0b84a8
commit
b3b6e16940
@ -19,6 +19,8 @@ with open(taginfo_path) as f:
|
||||
|
||||
valid_strings = [t["key"] for t in taginfo["tags"]]
|
||||
valid_strings += [t["value"] for t in taginfo["tags"] if "value" in t]
|
||||
valid_strings += [t["value"].lower() for t in taginfo["tags"] if "value" in t] # lower is for max speed
|
||||
valid_strings = set(valid_strings)
|
||||
|
||||
string_regxp = re.compile("\"([\d\w\_:]+)\"")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user