[NUI][Non-ACR] 26/237526/2
authorhuiyu.eun <huiyu.eun@samsung.com>
Wed, 1 Jul 2020 05:58:30 +0000 (14:58 +0900)
committerhuiyu eun <huiyu.eun@samsung.com>
Wed, 1 Jul 2020 05:53:03 +0000 (05:53 +0000)
Fix LottieAnimationView TCT

Modify Delay timing

Change-Id: Ib7646dcb1091f12c0950bea6b0fffa0752c15cbb
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
tct-suite-vs/Tizen.NUI.Tests/testcase/TSLottieAnimationView.cs

index 70a961f..7624db6 100755 (executable)
@@ -171,19 +171,16 @@ namespace Tizen.NUI.BaseComponents.Tests
         public async Task CurrentFrame_SET_GET_VALUE()
         {
             L.Debug(tag, $"@@ CurrentFrame_SET_GET_VALUE() @@");
-            await Task.Delay(500);
 
             var lottie = new LottieAnimationView();
-            await Task.Delay(500);
 
             lottie.URL = lottieFilePath + "/lottie.json";
-            await Task.Delay(500);
 
             NUIApplication.GetDefaultWindow().Add(lottie);
-            await Task.Delay(500);
 
             var current = 3;
             lottie.CurrentFrame = current;
+            await Task.Delay(1000);
             Assert.IsTrue(current == lottie.CurrentFrame, "should be same as previously set value");
 
             lottie.Unparent();