diff --git a/indexer/ftypes_matcher.cpp b/indexer/ftypes_matcher.cpp index e0b114bc71..8fae1ce138 100644 --- a/indexer/ftypes_matcher.cpp +++ b/indexer/ftypes_matcher.cpp @@ -63,7 +63,6 @@ public: m_map[c.GetTypeByPath({"highway", "cycleway"})] = ftypes::HighwayClass::Pedestrian; m_map[c.GetTypeByPath({"highway", "path"})] = ftypes::HighwayClass::Pedestrian; m_map[c.GetTypeByPath({"highway", "construction"})] = ftypes::HighwayClass::Pedestrian; - } ftypes::HighwayClass Get(uint32_t t) const diff --git a/routing/routing_integration_tests/route_test.cpp b/routing/routing_integration_tests/route_test.cpp index dd3a61d595..4d6b599b90 100644 --- a/routing/routing_integration_tests/route_test.cpp +++ b/routing/routing_integration_tests/route_test.cpp @@ -419,7 +419,7 @@ namespace CHECK(routeResult.first, ()); Route const & route = *routeResult.first; - integration::TestRouteTime(route, 6470.68); + integration::TestRouteTime(route, 6348.78); } // Test on removing speed cameras from the route for maps from Jan 2019, diff --git a/routing/routing_integration_tests/transit_route_test.cpp b/routing/routing_integration_tests/transit_route_test.cpp index d648a5deaa..90d81f66d1 100644 --- a/routing/routing_integration_tests/transit_route_test.cpp +++ b/routing/routing_integration_tests/transit_route_test.cpp @@ -69,7 +69,7 @@ UNIT_TEST(Transit_Piter_TooLongPedestrian) TRouteResult routeResult = integration::CalculateRoute(integration::GetVehicleComponents(VehicleType::Transit), mercator::FromLatLon(59.90511, 30.31425), {0.0, 0.0}, - mercator::FromLatLon(59.80677, 30.44749)); + mercator::FromLatLon(59.78014, 30.50036)); TEST_EQUAL(routeResult.second, RouterResultCode::TransitRouteNotFoundTooLongPedestrian, ()); } @@ -124,7 +124,7 @@ UNIT_TEST(Transit_London_DeptfordBridgeToCyprus) TEST_EQUAL(routeResult.second, RouterResultCode::NoError, ()); - integration::TestRouteLength(*routeResult.first, 12293.4); + integration::TestRouteLength(*routeResult.first, 12758.9); CHECK(routeResult.first, ()); integration::CheckSubwayExistence(*routeResult.first);