diff --git a/tests/test_elements.py b/tests/test_elements.py index 03e32c8..16def49 100644 --- a/tests/test_elements.py +++ b/tests/test_elements.py @@ -46,8 +46,11 @@ ROAD_TYPES: list[dict[str, str]] = [ {"highway": "path"}, {"highway": "track"}, {"highway": "raceway"}, - {"highway": "runway"}, - {"highway": "taxiway"}, + {"aeroway": "runway"}, + {"aeroway": "taxiway"}, +] + +RAILWAY_TYPES: list[dict[str, str]] = [ {"railway": "rail"}, {"railway": "light_rail"}, {"railway": "monorail"}, @@ -58,7 +61,6 @@ ROAD_TYPES: list[dict[str, str]] = [ {"railway": "subway", "color": "blue"}, ] - ROAD_FEATURES: list[dict[str, str]] = [ {"lanes": "1"}, {"lanes": "2"},