From 7b62432a9571794cbf2283c435abd59734e08065 Mon Sep 17 00:00:00 2001 From: RinaYou Date: Mon, 16 Apr 2018 15:19:56 +0900 Subject: [PATCH] [ElmSharp][Non-ACR] Fixed wrong TC Change-Id: If604d3b45b7ed471d108d1bcef9cd4635eb43340 Signed-off-by: Rina You --- tct-suite-vs/Tizen.ElmSharp.Tests/testcase/TSLayout.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tct-suite-vs/Tizen.ElmSharp.Tests/testcase/TSLayout.cs b/tct-suite-vs/Tizen.ElmSharp.Tests/testcase/TSLayout.cs index 703528b51..f90867e2b 100755 --- a/tct-suite-vs/Tizen.ElmSharp.Tests/testcase/TSLayout.cs +++ b/tct-suite-vs/Tizen.ElmSharp.Tests/testcase/TSLayout.cs @@ -401,7 +401,7 @@ namespace ElmSharp.Tests DefaultBackButtonEnabled = true }; var mark = _layout.BoxRemove("elm.text", naviFrameTemp); - Assert.AreEqual(false, "BoxRemove method return " + mark); + Assert.AreEqual(false, mark, "BoxRemove method should return false"); naviFrameTemp = null; } @@ -415,7 +415,7 @@ namespace ElmSharp.Tests public void BoxRemoveAll_CHECK() { var mark = _layout.BoxRemoveAll("elm.text", true); - Assert.AreEqual(false, "BoxRemoveAll method return " + mark); + Assert.AreEqual(false, mark, "BoxRemoveAll method should return false"); } [Test] -- 2.34.1