From e5d150686fae4e03fa5fed260830942d61cc03ab Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Wed, 8 Apr 2020 14:50:10 +0300 Subject: [PATCH] [routing] Fixing routing integration tests for 200402. --- routing/routing_integration_tests/pedestrian_route_test.cpp | 2 +- routing/routing_integration_tests/route_test.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/routing/routing_integration_tests/pedestrian_route_test.cpp b/routing/routing_integration_tests/pedestrian_route_test.cpp index d200db5475..7c164ac294 100644 --- a/routing/routing_integration_tests/pedestrian_route_test.cpp +++ b/routing/routing_integration_tests/pedestrian_route_test.cpp @@ -285,7 +285,7 @@ UNIT_TEST(CzechPragueHiltonToKvetniceViewpoint) integration::CalculateRouteAndTestRouteLength( integration::GetVehicleComponents(VehicleType::Pedestrian), mercator::FromLatLon(50.0933, 14.4397), {0., 0.}, - mercator::FromLatLon(50.0806, 14.3973), 4805.1); + mercator::FromLatLon(50.0806, 14.3973), 4448.6); } UNIT_TEST(RussiaSaintPetersburgMoyka93ToAlexanderColumn) diff --git a/routing/routing_integration_tests/route_test.cpp b/routing/routing_integration_tests/route_test.cpp index b09c948e50..5e7f789156 100644 --- a/routing/routing_integration_tests/route_test.cpp +++ b/routing/routing_integration_tests/route_test.cpp @@ -407,7 +407,7 @@ namespace CHECK(routeResult.first, ()); Route const & route = *routeResult.first; - integration::TestRouteTime(route, 6529.2); + integration::TestRouteTime(route, 6349.9); } UNIT_TEST(TolyattiFeatureThatCrossSeveralMwmsTest)