From 7b2725e2f277f6fa9d86f609740717d106c38ea6 Mon Sep 17 00:00:00 2001 From: Ilya Zverev Date: Fri, 20 Jan 2017 19:41:23 +0300 Subject: [PATCH] [tests] Add riverbank to area priority tests --- map/style_tests/classificator_tests.cpp | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/map/style_tests/classificator_tests.cpp b/map/style_tests/classificator_tests.cpp index a2ec4126d1..65516eae12 100644 --- a/map/style_tests/classificator_tests.cpp +++ b/map/style_tests/classificator_tests.cpp @@ -204,19 +204,17 @@ UNIT_TEST(Classificator_AreaPriority) // 0 {"natural", "coastline"}, // 1 - //{"waterway", "riverbank"}, - it's not a good idea to place it here - // 2 {"place", "island"}, {"natural", "land"}, - // 3 + // 2 {"natural", "wood"}, {"natural", "scrub"}, {"natural", "heath"}, {"natural", "grassland"}, {"landuse", "grass"}, {"landuse", "farm"}, {"landuse", "farmland"}, {"landuse", "forest"}, - // 4 + // ? //{"leisure", "park"}, {"leisure", "garden"}, - maybe next time (too tricky to do it now) - // 5 - {"natural", "water"}, {"natural", "lake"}, {"landuse", "basin"} + // 3 + {"natural", "water"}, {"natural", "lake"}, {"landuse", "basin"}, {"waterway", "riverbank"} }; - CheckPriority(types, {1, 2, 8, 3}, drule::area); + CheckPriority(types, {1, 2, 8, 4}, drule::area); } UNIT_TEST(Classificator_PoiPriority)