[NUI][Non-ACR][Fix TCT Fail issue] 45/189445/1
authorhuiyu.eun <huiyu.eun@samsung.com>
Tue, 18 Sep 2018 01:23:57 +0000 (10:23 +0900)
committerhuiyu.eun <huiyu.eun@samsung.com>
Tue, 18 Sep 2018 01:24:08 +0000 (10:24 +0900)
HierarchyDepth bug is fixed in platform. The expected value should be 1.

Change-Id: Idafe018fa6c2eda30bd6a722edb7162fe962372e
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
tct-suite-vs/Tizen.NUI.Tests/testcase/TSView.cs

index 911965f46537e5537aa7e25fcc5747f8ee1c135c..d65b9cfd1b4b85f31e1dc20db58db1ba6a5a813f 100755 (executable)
@@ -179,7 +179,7 @@ namespace Tizen.NUI.Tests
             View actor = new View();
             Assert.AreEqual(-1, actor.HierarchyDepth, "The actor is not in the hierarchy");
             Window.Instance.GetDefaultLayer().Add(actor);
-            Assert.AreEqual(2, actor.HierarchyDepth, "The actor is in the hierarchy");
+            Assert.AreEqual(1, actor.HierarchyDepth, "The actor is in the hierarchy");
             Window.Instance.GetDefaultLayer().Remove(actor);
         }