Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2015-07-13 09:46:28 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:55:22 +0300
commit2495eefe4a398779e2ed38a30afc989dc1d846e1 (patch)
tree32ed425d906f27c31dc6e802b67cdca6af5b7651 /integration_tests
parentb7b9e659c96b35f88c9f7726aa159884c1aae91f (diff)
After updating data an integration test fails. It fixes the test
Diffstat (limited to 'integration_tests')
-rw-r--r--integration_tests/osrm_turn_test.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/integration_tests/osrm_turn_test.cpp b/integration_tests/osrm_turn_test.cpp
index 91d01f21c9..8a7b692a9c 100644
--- a/integration_tests/osrm_turn_test.cpp
+++ b/integration_tests/osrm_turn_test.cpp
@@ -221,7 +221,8 @@ UNIT_TEST(RussiaMoscowPetushkovaPetushkovaTest)
UNIT_TEST(RussiaMoscowMKADLeningradkaTest)
{
TRouteResult const routeResult = integration::CalculateRoute(
- integration::GetOsrmComponents(), {37.43858, 67.68358}, {0., 0.}, {37.44885, 67.68115});
+ integration::GetOsrmComponents(), MercatorBounds::FromLatLon(55.87992, 37.43940),
+ {0., 0.}, MercatorBounds::FromLatLon(55.87854, 37.44865));
Route const & route = *routeResult.first;
IRouter::ResultCode const result = routeResult.second;