[UTC][dali-core][Non-ACR][fix property return value] 59/205859/3
authorhuiyu.eun <huiyu.eun@samsung.com>
Fri, 10 May 2019 01:54:37 +0000 (10:54 +0900)
committershobhit verma <shobhit.v@samsung.com>
Fri, 10 May 2019 07:11:31 +0000 (07:11 +0000)
If the value is empty, it returns "undefined type"

Change-Id: I66df259561d12ac3db9194cfcb883944a2143f98
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
src/utc/dali-core/property-value/utc-dali-property-value.cpp

index e933cd33e34ad0e6441494d72ddf1223333e8801..95a96f68c3125b178ee401abfb1d6c6724b4b009 100755 (executable)
@@ -3036,7 +3036,7 @@ void PropertyValueOutputStreamP(void)
     Property::Value empty;
     std::ostringstream stream;
     stream << empty;
-    DALI_CHECK_FAIL( stream.str() != "empty type", "PropertyValue::operator <<  has Failed. " );
+    DALI_CHECK_FAIL( stream.str() != "undefined type", "PropertyValue::operator <<  has Failed. " );
   }