From 7d72c7d39c38282bbcd20ff5517a018c79e77ee6 Mon Sep 17 00:00:00 2001 From: gmoryes Date: Wed, 22 Jan 2020 12:54:07 +0300 Subject: [PATCH] [routing] fix build --- routing/routing_integration_tests/street_names_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routing/routing_integration_tests/street_names_test.cpp b/routing/routing_integration_tests/street_names_test.cpp index 85c3eb3ab1..0da0231076 100644 --- a/routing/routing_integration_tests/street_names_test.cpp +++ b/routing/routing_integration_tests/street_names_test.cpp @@ -17,7 +17,7 @@ void MoveRoute(Route & route, ms::LatLon const & coords) info.m_verticalAccuracy = 0.01; info.m_longitude = coords.m_lon; info.m_latitude = coords.m_lat; - route.MoveIteratorToReal(info); + route.MoveIterator(info); } UNIT_TEST(RussiaTulskayaToPaveletskayaStreetNamesTest)