From dc1e1db84c46ada4a920eef41ed6d0cff1d2f4ef Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Mon, 15 Jun 2020 18:04:01 +0300 Subject: [PATCH] [routing] Preventing CHECK in case if there's no speed camera. --- .../speed_camera_notifications_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routing/routing_integration_tests/speed_camera_notifications_tests.cpp b/routing/routing_integration_tests/speed_camera_notifications_tests.cpp index f67f058654..5324b77d2a 100644 --- a/routing/routing_integration_tests/speed_camera_notifications_tests.cpp +++ b/routing/routing_integration_tests/speed_camera_notifications_tests.cpp @@ -91,7 +91,7 @@ bool CheckBeepSignal(RoutingSession & routingSession) SpeedCameraManager::Interval CheckZone(RoutingSession const & routingSession, double speedKmPH) { SpeedCameraOnRoute const & closestCamera = routingSession.GetSpeedCamManager().GetClosestCamForTests(); - CHECK(closestCamera.IsValid(), ("No speed camera found.")); + TEST(closestCamera.IsValid(), ("No speed camera found.")); double const speedMpS = routing::KMPH2MPS(speedKmPH); double const passedDist = routingSession.GetRouteForTests()->GetCurrentDistanceFromBeginMeters();