tasn pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=84fd52921e86df91f2a5e305fb38583a8460040a

commit 84fd52921e86df91f2a5e305fb38583a8460040a
Author: Tom Hacohen <t...@stosb.com>
Date:   Fri Feb 26 09:34:36 2016 +0000

    Evas textblock tests: Fix wrong test suite tests.
    
    The tests were assuming that textblock returns a sanitised utf8 string.
    This is not always correct, because textblock may cache and return the
    set utf8 markup if the text hasn't changed since the last set.
---
 src/tests/evas/evas_test_textblock.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/tests/evas/evas_test_textblock.c 
b/src/tests/evas/evas_test_textblock.c
index 379bc2e..cfa0aee 100644
--- a/src/tests/evas/evas_test_textblock.c
+++ b/src/tests/evas/evas_test_textblock.c
@@ -3642,11 +3642,11 @@ START_TEST(evas_textblock_escaping)
 
    const char *buf = "This &middot; is";
    evas_object_textblock_text_markup_set(tb, buf);
-   fail_if(strcmp(evas_object_textblock_text_markup_get(tb), "This \xc2\xb7 
is"));
+   fail_if(strcmp(evas_object_textblock_text_markup_get(tb), buf));
 
    buf = "This &nbsp; is";
    evas_object_textblock_text_markup_set(tb, buf);
-   fail_if(strcmp(evas_object_textblock_text_markup_get(tb), "This \xc2\xa0 
is"));
+   fail_if(strcmp(evas_object_textblock_text_markup_get(tb), buf));
 
    END_TB_TEST();
 }

-- 


Reply via email to