[ElmSharp.Tests][Non-ACR] Fix null reference exception 16/186616/1
authorSeungkeun Lee <sngn.lee@samsung.com>
Thu, 9 Aug 2018 08:52:18 +0000 (17:52 +0900)
committerLee Sanghoon <shooney.lee@samsung.com>
Mon, 13 Aug 2018 02:01:06 +0000 (02:01 +0000)
Change-Id: I72e6775faa95b1c734326130b2618b6ea046825e
(cherry picked from commit 2f4201d04e7373e11f4250b71f622115aa861cbb)

tct-suite-vs/Tizen.ElmSharp.Tests/testcase/TSEcoreTimelineAnimator.cs [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index f5f1694..035bb7f
@@ -65,7 +65,7 @@ namespace ElmSharp.Tests {
             int x = (int)((X2 * o) + (X1 * (1.0 - o)));
             int y = (int)((Y2 * o) + (Y1 * (1.0 - o)));
 
-            _square.Move(x, y);
+            _square?.Move(x, y);
         }
 
         [Test]