diff --git a/routing/base/followed_polyline.cpp b/routing/base/followed_polyline.cpp index 2b822a301b..1ef53fd0d3 100644 --- a/routing/base/followed_polyline.cpp +++ b/routing/base/followed_polyline.cpp @@ -149,7 +149,7 @@ FollowedPolyline::UpdatedProjectionInfo FollowedPolyline::UpdateMatchedProjectio ASSERT(m_current.IsValid(), ()); ASSERT_LESS(m_current.m_ind, m_poly.GetSize() - 1, ()); - auto res = GetBestMatchedProjection(posRect); + auto const res = GetBestMatchedProjection(posRect); if (res.m_iter.IsValid()) m_current = res.m_iter; diff --git a/routing/routing_integration_tests/speed_camera_notifications_tests.cpp b/routing/routing_integration_tests/speed_camera_notifications_tests.cpp index 142751b118..a2b28c959c 100644 --- a/routing/routing_integration_tests/speed_camera_notifications_tests.cpp +++ b/routing/routing_integration_tests/speed_camera_notifications_tests.cpp @@ -320,15 +320,25 @@ UNIT_TEST(SpeedCameraNotification_AutoAlwaysMode_7) TEST(!CheckBeepSignal(routingSession), ()); } - // No exceed speed limit in beep zone, we did no VoiceNotification, + // Intermediate Move for correct calculating of passedDistance. + { + double const speedKmPH = 20.0; + ChangePosition({ 55.76559, 37.59016}, speedKmPH, routingSession); + TEST_EQUAL(CheckZone(routingSession, speedKmPH), SpeedCameraManager::Interval::VoiceNotificationZone, ()); + TEST(!CheckVoiceNotification(routingSession), ()); + TEST(!CheckBeepSignal(routingSession), ()); + } + + // No exceed speed limit in beep zone, but we did VoiceNotification earlier, // so now we make BeedSignal. { double const speedKmPH = 40.0; - ChangePosition({55.76559, 37.59016}, speedKmPH, routingSession); + ChangePosition({ 55.765732, 37.590305}, speedKmPH, routingSession); TEST_EQUAL(CheckZone(routingSession, speedKmPH), SpeedCameraManager::Interval::BeepSignalZone, ()); TEST(!CheckVoiceNotification(routingSession), ()); TEST(CheckBeepSignal(routingSession), ()); } + } }