From b8f905dfd00a9e160a26f0ad3568e9b500d27ad4 Mon Sep 17 00:00:00 2001 From: Yunmi Ha Date: Tue, 12 May 2020 14:14:36 +0900 Subject: [PATCH] test: Fix level value for VibratePattern test Change-Id: I087dc84a91c5a1544dab2c5cd341e9072bb0bad3 Signed-off-by: Yunmi Ha (cherry picked from commit 7bfd85f7d98309c2c9a08597053e1d03e3ccfd2a) --- src/auto-test/haptic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auto-test/haptic.c b/src/auto-test/haptic.c index ea1022d..c8ec2a8 100644 --- a/src/auto-test/haptic.c +++ b/src/auto-test/haptic.c @@ -251,7 +251,7 @@ void haptic_test_all(int *success, int *fail) nanosleep(&time, NULL); (haptic_vibratemonotone(300, 100, 0)) ? s++ : f++; nanosleep(&time, NULL); - (haptic_vibratepattern("FEEDBACK_PATTERN_SIP", 100, 0)) ? s++ : f++; + (haptic_vibratepattern("FEEDBACK_PATTERN_SIP", 2, 0)) ? s++ : f++; nanosleep(&time, NULL); (haptic_getstate(0)) ? s++ : f++; (haptic_showhandlelist()) ? s++ : f++; -- 2.7.4