From 8244f829cbeae05ab511b76bbd690e5fcf4b5173 Mon Sep 17 00:00:00 2001 From: "sooyeon.kim" Date: Thu, 30 Nov 2017 10:22:33 +0900 Subject: [PATCH] [UTC][tts][Non-ACR][Fix set_mode_n3] Change-Id: I53bb0cdebd725f31880daf2f39e387893ee9b8d5 Signed-off-by: sooyeon.kim --- src/utc/tts/utc-tts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utc/tts/utc-tts.c b/src/utc/tts/utc-tts.c index 5dbea28a3..f01f34ce3 100755 --- a/src/utc/tts/utc-tts.c +++ b/src/utc/tts/utc-tts.c @@ -400,7 +400,7 @@ int utc_tts_set_mode_n2(void) /** * @testcase utc_tts_set_mode_n3 * @since_tizen 2.3 - * @description test whether function returns error with abnormal mode as 3. + * @description test whether function returns error with abnormal mode as 100. */ int utc_tts_set_mode_n3(void) { @@ -412,7 +412,7 @@ int utc_tts_set_mode_n3(void) } assert_eq(is_created_hndl, TTS_ERROR_NONE); - ret = tts_set_mode(g_tts, 3); + ret = tts_set_mode(g_tts, 100); assert_neq(ret, TTS_ERROR_NONE); return 0; -- 2.34.1