From fa84c3d936765dc2267c446e37c4a78a3fd563b7 Mon Sep 17 00:00:00 2001 From: "huiyu.eun" Date: Wed, 13 Feb 2019 14:00:03 +0900 Subject: [PATCH] [NUI][Non-ACR] Fix Greater arguments Change-Id: I0b06b4c2e0fbd9482646e2fe12857060c0342dcb Signed-off-by: huiyu.eun --- tct-suite-vs/Tizen.NUI.Tests/testcase/TSTypeInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.34.1