Fix due to change in behavior of edje_text_class_set. (null font is allowed)
If the font is set to null, the return is also null.
https://review.tizen.org/gerrit/#/c/platform/upstream/efl/+/317999/
Change-Id: Ia43309f14c56bca441792ac32c94119011aa2724
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
edje_text_class_del(text_class_name);
return;
}
- if (!returned_font || strcmp(returned_font, ""))
+ if (returned_font)
{
ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
edje_text_class_del(text_class_name);