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();