Skip to content

Commit 335ec9b

Browse files
committed
fixup! Added handling of service status update
1 parent e9931df commit 335ec9b

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

src/components/application_manager/include/application_manager/policies/policy_handler.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,8 +464,7 @@ class PolicyHandler : public PolicyHandlerInterface,
464464

465465
/**
466466
* @brief Callback for when a SetCloudAppProperties message is received
467-
* from a
468-
* mobile app
467+
* from a mobile app
469468
* @param message The SetCloudAppProperties message
470469
*/
471470
void OnSetCloudAppProperties(

src/components/protocol_handler/include/protocol_handler/service_status_update_handler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
namespace protocol_handler {
3939

4040
/**
41-
* @brief ServiceUpdateFailureReason helper enum containing reasons for
41+
* @brief ServiceStatus helper enum containing reasons for
4242
* service
4343
* status to be updated
4444
*/

src/components/protocol_handler/test/service_status_update_handler_test.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ namespace components {
3939
namespace protocol_handler_test {
4040

4141
namespace {
42-
const uint32_t kConnectioKey = 123u;
42+
const uint32_t kConnectionKey = 123u;
4343
}
4444

4545
using namespace protocol_handler;
@@ -204,11 +204,11 @@ TEST_P(ServiceStatusUpdateHandlerTest, OnServiceUpdate) {
204204

205205
EXPECT_CALL(
206206
*mock_service_status_update_handler_listener_,
207-
ProcessServiceStatusUpdate(kConnectioKey, _, service_event_, reason_))
207+
ProcessServiceStatusUpdate(kConnectionKey, _, service_event_, reason_))
208208
.Times(1);
209209

210210
service_status_update_handler_->OnServiceUpdate(
211-
kConnectioKey, GetParam().service_type_, GetParam().service_status_);
211+
kConnectionKey, GetParam().service_type_, GetParam().service_status_);
212212
}
213213

214214
TEST_F(ServiceStatusUpdateHandlerTest, GetHMIServiceType) {

0 commit comments

Comments
 (0)