From 98a298c75cf693cabee294dc375889b300cd20d6 Mon Sep 17 00:00:00 2001 From: Hwankyu Jhun Date: Wed, 21 Nov 2018 09:06:55 +0900 Subject: [PATCH] [Applications.Tests][Non-ACR][Fix a wrong exception] Change-Id: I72a7ef100e77965a8318ca33081625eef84af141 Signed-off-by: Hwankyu Jhun --- .../testcase/TSApplicationLaunchedEventArgs.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tct-suite-vs/Tizen.Applications.Tests/testcase/TSApplicationLaunchedEventArgs.cs b/tct-suite-vs/Tizen.Applications.Tests/testcase/TSApplicationLaunchedEventArgs.cs index e3c13fd..9660a12 100755 --- a/tct-suite-vs/Tizen.Applications.Tests/testcase/TSApplicationLaunchedEventArgs.cs +++ b/tct-suite-vs/Tizen.Applications.Tests/testcase/TSApplicationLaunchedEventArgs.cs @@ -46,10 +46,12 @@ namespace Tizen.Applications.Tests public static void Eventlaunched(object sender, ApplicationLaunchedEventArgs Args) { - _argAppId = Args.ApplicationRunningContext.ApplicationId; - _processId = Args.ApplicationRunningContext.ProcessId; if (string.Equals(Args.ApplicationRunningContext.ApplicationId, AppId)) + { + _argAppId = Args.ApplicationRunningContext.ApplicationId; + _processId = Args.ApplicationRunningContext.ProcessId; _isLaunched = true; + } } [Test] -- 2.7.4