From 6d3d2cdb1422b68f467d78dafe48839aecebdce3 Mon Sep 17 00:00:00 2001 From: Sergey Vartanov Date: Sat, 6 Nov 2021 19:01:24 +0300 Subject: [PATCH] Fix aeroway test. --- tests/test_elements.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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"},