From: huiyu.eun Date: Fri, 10 May 2019 01:54:37 +0000 (+0900) Subject: [UTC][dali-core][Non-ACR][fix property return value] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eaa8c2af2c836cd3de644792ecae2eba55ce72ce;p=test%2Ftct%2Fnative%2Fapi.git [UTC][dali-core][Non-ACR][fix property return value] If the value is empty, it returns "undefined type" Change-Id: I66df259561d12ac3db9194cfcb883944a2143f98 Signed-off-by: huiyu.eun --- diff --git a/src/utc/dali-core/property-value/utc-dali-property-value.cpp b/src/utc/dali-core/property-value/utc-dali-property-value.cpp index e933cd33e..95a96f68c 100755 --- a/src/utc/dali-core/property-value/utc-dali-property-value.cpp +++ b/src/utc/dali-core/property-value/utc-dali-property-value.cpp @@ -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. " ); }