From 6bf7f19d6059a71e34566a8ef34f9e7accc3f3cf Mon Sep 17 00:00:00 2001 From: Jaehyun Cho Date: Wed, 13 Mar 2019 19:25:36 +0900 Subject: [PATCH] Revert "tests: add test for elm_layout_text_set" This reverts commit 0e027980f6c275f1a56ae550679010d689c91b23. Since D7888 breaks the backward compatibility, D7888 is going to be reverted. This patch is based on D7888 so this patch is also required to be reverted for now. After a proper patch is applied instead of D7888, then this patch can be submitted again. --- src/tests/elementary/elm_test_layout.c | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/tests/elementary/elm_test_layout.c b/src/tests/elementary/elm_test_layout.c index b5ee17a30c..5184086538 100644 --- a/src/tests/elementary/elm_test_layout.c +++ b/src/tests/elementary/elm_test_layout.c @@ -70,22 +70,9 @@ EFL_START_TEST(elm_layout_test_swallows) } EFL_END_TEST -EFL_START_TEST(elm_layout_test_text_set) -{ - Evas_Object *win, *layout; - - win = win_add(NULL, "layout", ELM_WIN_BASIC); - - layout = elm_layout_add(win); - ck_assert(!elm_layout_text_set(layout, "blahblah", "test")); -} -EFL_END_TEST - - void elm_test_layout(TCase *tc) { tcase_add_test(tc, elm_layout_test_legacy_type_check); tcase_add_test(tc, elm_atspi_role_get); tcase_add_test(tc, elm_layout_test_swallows); - tcase_add_test(tc, elm_layout_test_text_set); }