From: Hwankyu Jhun Date: Wed, 21 Nov 2018 00:06:55 +0000 (+0900) Subject: [Applications.Tests][Non-ACR][Fix a wrong exception] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F54%2F193454%2F1;p=test%2Ftct%2Fcsharp%2Fapi.git [Applications.Tests][Non-ACR][Fix a wrong exception] Change-Id: I72a7ef100e77965a8318ca33081625eef84af141 Signed-off-by: Hwankyu Jhun --- 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]