aboutsummaryrefslogtreecommitdiff
path: root/apps/test/common/chre_audio_concurrency_test/src/chre_audio_concurrency_test_manager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'apps/test/common/chre_audio_concurrency_test/src/chre_audio_concurrency_test_manager.cc')
-rw-r--r--apps/test/common/chre_audio_concurrency_test/src/chre_audio_concurrency_test_manager.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/apps/test/common/chre_audio_concurrency_test/src/chre_audio_concurrency_test_manager.cc b/apps/test/common/chre_audio_concurrency_test/src/chre_audio_concurrency_test_manager.cc
index 0000ed99..20cf736c 100644
--- a/apps/test/common/chre_audio_concurrency_test/src/chre_audio_concurrency_test_manager.cc
+++ b/apps/test/common/chre_audio_concurrency_test/src/chre_audio_concurrency_test_manager.cc
@@ -99,8 +99,7 @@ bool Manager::handleTestCommandMessage(uint16_t hostEndpointId, TestStep step) {
if (success) {
mTestSession = TestSession(hostEndpointId, step);
- LOGI("Starting test step %" PRIu8,
- static_cast<uint8_t>(mTestSession->step));
+ LOGI("Starting test step %" PRIu8, mTestSession->step);
}
}
@@ -159,8 +158,7 @@ void Manager::handleDataFromChre(uint16_t eventType, const void *eventData) {
void Manager::handleTimer() {
if (mTimerHandle != CHRE_TIMER_INVALID && mTestSession.has_value()) {
- LOGE("Timed out during test: step %" PRIu8,
- static_cast<uint8_t>(mTestSession->step));
+ LOGE("Timed out during test: step %" PRIu8, mTestSession->step);
sendTestResultToHost(mTestSession->hostEndpointId, kTestResultMessageType,
false /* success */);
mTestSession.reset();
@@ -238,8 +236,7 @@ void Manager::handleAudioDataEvent(const chreAudioDataEvent *data) {
}
default:
- LOGE("Unexpected test step %" PRIu8,
- static_cast<uint8_t>(mTestSession->step));
+ LOGE("Unexpected test step %" PRIu8, mTestSession->step);
break;
}
}