From: tasn Date: Wed, 13 Jul 2011 13:56:40 +0000 (+0000) Subject: Evas tests: Added a missing fail_if to a textblock test. X-Git-Tag: accepted/2.0/20130306.225542~242^2~278 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=45884fc8448270290b93ae76350fae9631162fc4;p=profile%2Fivi%2Fevas.git Evas tests: Added a missing fail_if to a textblock test. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@61337 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/tests/evas_test_textblock.c b/src/tests/evas_test_textblock.c index 083c0c2..be98a6a 100644 --- a/src/tests/evas_test_textblock.c +++ b/src/tests/evas_test_textblock.c @@ -399,6 +399,8 @@ START_TEST(evas_textblock_items) evas_textblock_cursor_format_item_geometry_get(cur, NULL, NULL, &w, &h); fail_if((w != (2 * 93)) || (h != (2 * 152))); evas_textblock_cursor_pos_set(cur, 11); + evas_textblock_cursor_format_item_geometry_get(cur, NULL, NULL, &w, &h); + fail_if((w != (2 * 93)) || (h != (2 * 152))); buf = "This is an ."; evas_object_textblock_text_markup_set(tb, buf);