From ca8044c39e8645eeba720d65c6ce892ec2c3350b Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Thu, 6 Aug 2015 15:55:02 +0200 Subject: [PATCH] tests: Correct ATSPI role check for popup. ctxpopup is using ELM_ATSPI_ROLE_POPUP_MENU while the normal popup uses ELM_ATSPI_ROLE_NOTIFICATION. ref T2028 --- src/tests/elm_test_popup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/elm_test_popup.c b/src/tests/elm_test_popup.c index 6da552a..f98adf1 100644 --- a/src/tests/elm_test_popup.c +++ b/src/tests/elm_test_popup.c @@ -18,7 +18,7 @@ START_TEST (elm_atspi_role_get) popup = elm_popup_add(win); eo_do(popup, role = elm_interface_atspi_accessible_role_get()); - ck_assert(role == ELM_ATSPI_ROLE_POPUP_MENU); + ck_assert(role == ELM_ATSPI_ROLE_NOTIFICATION); elm_shutdown(); } -- 2.7.4