[UTC][dali-adaptor][Non-ACR][Fix for build failure of dali-adaptor UTC] 33/209433/1
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Mon, 8 Jul 2019 02:10:15 +0000 (11:10 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Mon, 8 Jul 2019 02:10:48 +0000 (11:10 +0900)
Change-Id: Ia5da0805bd12d852f71c9c57e139fa9a8f6470e0
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
src/utc/dali-adaptor/window/utc-dali-window.cpp

index 5cb7dc28796a040b999c5bd053c0ededfcc5a86b..f226b37605929b8dcea4200de4d7031a643e6a54 100755 (executable)
@@ -878,10 +878,10 @@ void WindowGetLayerCountP( Application& application )
   // Add a new layer to the window
   Layer newLayer = Layer::New();
   window.Add( newLayer );
-  DALI_TEST_EQUALS( window.GetLayerCount() != 2u, "GetLayerCount is failed to get expected value" );
+  DALI_CHECK_FAIL( window.GetLayerCount() != 2u, "GetLayerCount is failed to get expected value" );
 
   // Retrieves the new layer from the window
-  DALI_TEST_EQUALS( window.GetLayer( 1u ) != newLayer, "GetLayer is failed to get expected value" );
+  DALI_CHECK_FAIL( window.GetLayer( 1u ) != newLayer, "GetLayer is failed to get expected value" );
 
   DaliLog::PrintPass();
 }
@@ -896,11 +896,11 @@ void WindowGetLayerP( Application& application )
   // Add a new layer to the window
   Layer layer = Layer::New();
   window.Add( layer );
-  DALI_TEST_EQUALS( window.GetLayerCount() != 2u, "GetLayerCount is failed to get expected value" );
+  DALI_CHECK_FAIL( window.GetLayerCount() != 2u, "GetLayerCount is failed to get expected value" );
 
   // Remove the new layer from the window
   window.Remove( layer );
-  DALI_TEST_EQUALS( window.GetLayerCount() != 1u, "GetLayerCount is failed to get expected value" );
+  DALI_CHECK_FAIL( window.GetLayerCount() != 1u, "GetLayerCount is failed to get expected value" );
 
   DaliLog::PrintPass();
 }