diff --git a/routing/routing_integration_tests/bicycle_route_test.cpp b/routing/routing_integration_tests/bicycle_route_test.cpp index 19a736190a..b12307f68f 100644 --- a/routing/routing_integration_tests/bicycle_route_test.cpp +++ b/routing/routing_integration_tests/bicycle_route_test.cpp @@ -64,7 +64,7 @@ UNIT_TEST(NetherlandsAmsterdamBicycleYes) Route const & route = *routeResult.first; RouterResultCode const result = routeResult.second; TEST_EQUAL(result, RouterResultCode::NoError, ()); - TEST(base::AlmostEqualAbs(route.GetTotalTimeSec(), 301.8, 1.0), (route.GetTotalTimeSec())); + TEST(base::AlmostEqualAbs(route.GetTotalTimeSec(), 304.2, 1.0), (route.GetTotalTimeSec())); } // This test on tag cycleway=opposite for a streets which have oneway=yes. diff --git a/routing/routing_integration_tests/pedestrian_route_test.cpp b/routing/routing_integration_tests/pedestrian_route_test.cpp index 7c164ac294..8285d740dc 100644 --- a/routing/routing_integration_tests/pedestrian_route_test.cpp +++ b/routing/routing_integration_tests/pedestrian_route_test.cpp @@ -173,7 +173,7 @@ UNIT_TEST(BelarusMinksBarURatushiToMoscowBusStation) integration::CalculateRouteAndTestRouteLength( integration::GetVehicleComponents(VehicleType::Pedestrian), mercator::FromLatLon(53.9045, 27.5569), {0., 0.}, - mercator::FromLatLon(53.889, 27.5466), 2677.57); + mercator::FromLatLon(53.889, 27.5466), 2395.3); } UNIT_TEST(BelarusBobruisk50LetVlksmToSanatoryShinnik) @@ -515,7 +515,7 @@ UNIT_TEST(RussiaPriut11Elbrus) integration::CalculateRouteAndTestRouteTime( integration::GetVehicleComponents(VehicleType::Pedestrian), mercator::FromLatLon(43.31475, 42.46035), {0., 0.}, - mercator::FromLatLon(43.35254, 42.43788), 32588.6 /* expectedTimeSeconds */); + mercator::FromLatLon(43.35254, 42.43788), 37753.4 /* expectedTimeSeconds */); } // Test on going down from Elbrus mountain to Priut11. @@ -524,7 +524,7 @@ UNIT_TEST(RussiaElbrusPriut11) integration::CalculateRouteAndTestRouteTime( integration::GetVehicleComponents(VehicleType::Pedestrian), mercator::FromLatLon(43.35254, 42.43788), {0., 0.}, - mercator::FromLatLon(43.31475, 42.46035), 13708.4 /* expectedTimeSeconds */); + mercator::FromLatLon(43.31475, 42.46035), 15878.9 /* expectedTimeSeconds */); } // Test on going straight forward on primary road. diff --git a/routing/routing_integration_tests/route_test.cpp b/routing/routing_integration_tests/route_test.cpp index af0f339a4b..d91f3a4f3a 100644 --- a/routing/routing_integration_tests/route_test.cpp +++ b/routing/routing_integration_tests/route_test.cpp @@ -59,7 +59,7 @@ namespace integration::CalculateRouteAndTestRouteLength( integration::GetVehicleComponents(VehicleType::Car), mercator::FromLatLon(55.97310, 37.41460), {0.0, 0.0}, - mercator::FromLatLon(55.75100, 37.61790), 33763.7); + mercator::FromLatLon(55.75100, 37.61790), 42732.6); } // Restrictions tests. Check restrictions generation, if there are any errors. @@ -520,7 +520,7 @@ namespace integration::CalculateRouteAndTestRouteLength( vehicleComponents, mercator::FromLatLon(55.93934, 37.406), {0.0, 0.0}, - mercator::FromLatLon(55.93952, 37.45089), 8987.7); + mercator::FromLatLon(55.93952, 37.45089), 10713.9); } // Test on necessity calling RectCoversPolyline() after DataSource::ForEachInRect() @@ -532,7 +532,7 @@ namespace integration::CalculateRouteAndTestRouteLength( vehicleComponents, mercator::FromLatLon(55.93885, 37.40588), {0.0, 0.0}, - mercator::FromLatLon(55.93706, 37.45339), 9168.15); + mercator::FromLatLon(55.93706, 37.45339), 10894.3); } UNIT_TEST(NoCrash_RioGrandeCosmopolis) diff --git a/routing/routing_integration_tests/turn_test.cpp b/routing/routing_integration_tests/turn_test.cpp index 4861f6ec01..af50f5990c 100644 --- a/routing/routing_integration_tests/turn_test.cpp +++ b/routing/routing_integration_tests/turn_test.cpp @@ -177,8 +177,8 @@ UNIT_TEST(RussiaMoscowNoTurnsOnMKADTurnTest) RouterResultCode const result = routeResult.second; TEST_EQUAL(result, RouterResultCode::NoError, ()); - integration::TestTurnCount(route, 1 /* expectedTurnCount */); - integration::GetNthTurn(route, 0) + integration::TestTurnCount(route, 2 /* expectedTurnCount */); + integration::GetNthTurn(route, 1) .TestValid() .TestPoint({37.68276, 67.14062}) .TestDirection(CarDirection::ExitHighwayToRight);