Fix UTC build error 14/315614/1
authorEunki, Hong <eunkiki.hong@samsung.com>
Mon, 5 Aug 2024 08:07:11 +0000 (17:07 +0900)
committerEunki, Hong <eunkiki.hong@samsung.com>
Mon, 5 Aug 2024 08:07:11 +0000 (17:07 +0900)
Change-Id: Ie78675bd4a10301423214d163f4c38fe99599451
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
automated-tests/src/dali/utc-Dali-Actor.cpp

index 7522ed33e3c778a4b392420ae029c7fd6f0cdab5..d6331b1583bf48da87fa0b58c24e3a0c813bd657 100644 (file)
@@ -10503,11 +10503,11 @@ int utcDaliActorInheritedVisibilityChangeSignal5(void)
 
   data.Reset();
   application.GetScene().Show();
-  data.Check(true, actor, true, TEST_LOCATION);
+  data.Check(true, Dali::Actor(), actor, true, TEST_LOCATION);
 
   data.Reset();
   actor.SetProperty(Actor::Property::VISIBLE, false);
-  data.Check(true, actor, false, TEST_LOCATION);
+  data.Check(true, Dali::Actor(), actor, false, TEST_LOCATION);
 
   data.Reset();
   actor.SetProperty(Actor::Property::VISIBLE, false);
@@ -10515,7 +10515,7 @@ int utcDaliActorInheritedVisibilityChangeSignal5(void)
 
   data.Reset();
   actor.SetProperty(Actor::Property::VISIBLE, true);
-  data.Check(true, actor, true, TEST_LOCATION);
+  data.Check(true, Dali::Actor(), actor, true, TEST_LOCATION);
 
   data.Reset();
   actor.SetProperty(Actor::Property::VISIBLE, true);
@@ -10523,7 +10523,7 @@ int utcDaliActorInheritedVisibilityChangeSignal5(void)
 
   data.Reset();
   application.GetScene().Hide();
-  data.Check(true, actor, false, TEST_LOCATION);
+  data.Check(true, Dali::Actor(), actor, false, TEST_LOCATION);
 
   data.Reset();
   actor.SetProperty(Actor::Property::VISIBLE, false);
@@ -10535,7 +10535,7 @@ int utcDaliActorInheritedVisibilityChangeSignal5(void)
 
   data.Reset();
   actor.SetProperty(Actor::Property::VISIBLE, true);
-  data.Check(true, actor, true, TEST_LOCATION);
+  data.Check(true, Dali::Actor(), actor, true, TEST_LOCATION);
 
   END_TEST;
 }