summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@osg.samsung.com>2015-08-06 15:55:02 +0200
committerStefan Schmidt <stefan@osg.samsung.com>2015-08-06 19:38:59 +0200
commitca8044c39e8645eeba720d65c6ce892ec2c3350b (patch)
tree7c71acc43a8b5b7c09bf75fcbbe9bbc763d99083
parentd5d0b689537a4eef2025e098b686c999970d488a (diff)
downloadelementary-ca8044c39e8645eeba720d65c6ce892ec2c3350b.tar.gz
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
-rw-r--r--src/tests/elm_test_popup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/elm_test_popup.c b/src/tests/elm_test_popup.c
index 6da552a52..f98adf146 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();
}