From 6ac4669c33b63fc0b87fc7b15925c65de503b84c Mon Sep 17 00:00:00 2001 From: tasn Date: Wed, 14 Dec 2011 13:27:08 +0000 Subject: [PATCH] Evas tests: Fix textblock text according to function change. git-svn-id: http://svn.enlightenment.org/svn/e/trunk/evas@66189 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/tests/evas_test_textblock.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tests/evas_test_textblock.c b/src/tests/evas_test_textblock.c index 8eb9fb3..07d04c8 100644 --- a/src/tests/evas_test_textblock.c +++ b/src/tests/evas_test_textblock.c @@ -1520,15 +1520,15 @@ START_TEST(evas_textblock_text_getters) /* Markup to plain */ { - char *tmp = evas_textblock_markup_to_plain(tb, "
aa<\n/>bb<\t/>"); + char *tmp = evas_textblock_text_markup_to_utf8(tb, "
aa<\n/>bb<\t/>"); fail_if(strcmp(tmp, "\naa\nbb\t")); free(tmp); - tmp = evas_textblock_markup_to_plain(tb, "a"); + tmp = evas_textblock_text_markup_to_utf8(tb, "a"); fail_if(strcmp(tmp, "a\xEF\xBF\xBC")); free(tmp); - tmp = evas_textblock_markup_to_plain(tb, "a "); + tmp = evas_textblock_text_markup_to_utf8(tb, "a "); fail_if(strcmp(tmp, "a\xC2\xA0")); free(tmp); } -- 2.7.4