From: huiyu.eun Date: Wed, 13 Feb 2019 05:00:03 +0000 (+0900) Subject: [NUI][Non-ACR] Fix Greater arguments X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fa84c3d936765dc2267c446e37c4a78a3fd563b7;p=test%2Ftct%2Fcsharp%2Fapi.git [NUI][Non-ACR] Fix Greater arguments Change-Id: I0b06b4c2e0fbd9482646e2fe12857060c0342dcb Signed-off-by: huiyu.eun --- diff --git a/tct-suite-vs/Tizen.NUI.Tests/testcase/TSTypeInfo.cs b/tct-suite-vs/Tizen.NUI.Tests/testcase/TSTypeInfo.cs index a75be88f5..0c3523021 100755 --- a/tct-suite-vs/Tizen.NUI.Tests/testcase/TSTypeInfo.cs +++ b/tct-suite-vs/Tizen.NUI.Tests/testcase/TSTypeInfo.cs @@ -137,7 +137,7 @@ namespace Tizen.NUI.Tests { var typeInfo = TypeRegistry.Get().GetTypeInfo("PushButton"); Assert.IsInstanceOf(typeInfo, "Should be an instance of TypeInfo type."); - Assert.Greater(0, typeInfo.GetPropertyCount(), "The property count should greater than 0"); + Assert.Greater(typeInfo.GetPropertyCount(), 0, "The property count should greater than 0"); } catch (Exception e) {