From 199dd10c51752567030ed3622eb0fc69dfa45fe1 Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Wed, 20 Nov 2024 19:10:21 +0300 Subject: [PATCH] [tests][routing] Update bicycle speed tests Signed-off-by: Konstantin Pastbin --- routing_common/routing_common_tests/vehicle_model_test.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/routing_common/routing_common_tests/vehicle_model_test.cpp b/routing_common/routing_common_tests/vehicle_model_test.cpp index 8045187c16..23402a509c 100644 --- a/routing_common/routing_common_tests/vehicle_model_test.cpp +++ b/routing_common/routing_common_tests/vehicle_model_test.cpp @@ -351,7 +351,6 @@ UNIT_CLASS_TEST(VehicleModelTest, BicycleModel_Smoke) UNIT_CLASS_TEST(VehicleModelTest, BicycleModel_Speeds) { auto const & model = BicycleModel::AllLimitsInstance(); - auto const & c = classif(); auto const p = DefaultParams(); std::vector> const highways = { @@ -363,12 +362,10 @@ UNIT_CLASS_TEST(VehicleModelTest, BicycleModel_Speeds) {path, yesBicycle}, // TODO: unpaved by default, so should be lower than shared footways or cycleways, but is equal {cycleway, pavedBad}, {footway, yesBicycle, pavedBad}, + {footway}, // If allowed in the region. {cycleway, unpavedBad}, + {path, unpavedGood}, // Its controversial what is preferrable: a good path or a bad cycleway {path, yesBicycle, unpavedBad}, - {path, unpavedGood}, // TODO: should be faster than bad surface cycleway (mtb?), but weight is less while eta is faster - {footway}, - {footway, c.GetTypeByPath({"hwtag", "nobicycle"})}, // TODO: should be lower than previous, but is equal - // {path, c.GetTypeByPath({"hwtag", "nobicycle"})}, //TODO: should be lower than previous, but is higher {path, unpavedBad}, };