From 9f4032f2f5ad65740142bb40ddf68edef5a98974 Mon Sep 17 00:00:00 2001 From: Mikhail Gorbushin Date: Sun, 25 Aug 2019 18:44:10 +0300 Subject: [PATCH] [routing] Fix routing_integration_tests --- routing/routing_integration_tests/bicycle_route_test.cpp | 2 +- routing/routing_integration_tests/pedestrian_route_test.cpp | 2 +- routing/routing_integration_tests/route_test.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/routing/routing_integration_tests/bicycle_route_test.cpp b/routing/routing_integration_tests/bicycle_route_test.cpp index 74d130c40c..1c70e8fc64 100644 --- a/routing/routing_integration_tests/bicycle_route_test.cpp +++ b/routing/routing_integration_tests/bicycle_route_test.cpp @@ -131,7 +131,7 @@ UNIT_TEST(SwedenStockholmBicyclePastFerry) CalculateRouteAndTestRouteLength( GetVehicleComponents(VehicleType::Bicycle), MercatorBounds::FromLatLon(59.4725, 18.51355), {0.0, 0.0}, - MercatorBounds::FromLatLon(59.32967, 18.075), 66161.2); + MercatorBounds::FromLatLon(59.32967, 18.075), 46163.7); } UNIT_TEST(CrossMwmKaliningradRegionToLiepaja) diff --git a/routing/routing_integration_tests/pedestrian_route_test.cpp b/routing/routing_integration_tests/pedestrian_route_test.cpp index a33e3ac31c..cc0634f86b 100644 --- a/routing/routing_integration_tests/pedestrian_route_test.cpp +++ b/routing/routing_integration_tests/pedestrian_route_test.cpp @@ -494,7 +494,7 @@ UNIT_TEST(NetherlandsAmsterdamPedestrianPastFerry) integration::CalculateRouteAndTestRouteLength( integration::GetVehicleComponents(VehicleType::Pedestrian), MercatorBounds::FromLatLon(52.38075, 4.89938), {0.0, 0.0}, - MercatorBounds::FromLatLon(52.40194, 4.89038), 3580.0); + MercatorBounds::FromLatLon(52.40194, 4.89038), 2553.18); } // Test on building pedestrian route past ferry. diff --git a/routing/routing_integration_tests/route_test.cpp b/routing/routing_integration_tests/route_test.cpp index 84570803d6..179340cd4d 100644 --- a/routing/routing_integration_tests/route_test.cpp +++ b/routing/routing_integration_tests/route_test.cpp @@ -203,7 +203,7 @@ namespace integration::CalculateRouteAndTestRouteLength( integration::GetVehicleComponents(VehicleType::Car), MercatorBounds::FromLatLon(51.09276, 1.11369), {0., 0.}, - MercatorBounds::FromLatLon(50.93227, 1.82725), 64753.0); + MercatorBounds::FromLatLon(50.93227, 1.82725), 72153.8); } UNIT_TEST(RussiaMoscowStartAtTwowayFeatureTest)