summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn E <johne53@tiscali.co.uk>2013-03-27 15:42:19 +0100
committerAlejandro PiƱeiro <apinheiro@igalia.com>2013-03-27 15:42:19 +0100
commit8554330034b10e153a5aa4aa1ebed9398549e617 (patch)
treed61fcd1a3f190d6fbb6a4029251eab4bdcef3294
parent8d49ba6e557115997a8567074f673c748d428ffc (diff)
downloadatk-8554330034b10e153a5aa4aa1ebed9398549e617.tar.gz
tests: fix hyphenation on testrelation.c
https://bugzilla.gnome.org/show_bug.cgi?id=696409
-rw-r--r--tests/testrelation.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/testrelation.c b/tests/testrelation.c
index 3fb3d91..8111d88 100644
--- a/tests/testrelation.c
+++ b/tests/testrelation.c
@@ -173,7 +173,7 @@ test_role (void)
name = atk_role_get_name (ATK_ROLE_PAGE_TAB);
g_return_val_if_fail (name, FALSE);
- if (strcmp (name, "page-tab") != 0)
+ if (strcmp (name, "page tab") != 0)
{
g_print ("Unexpected name for ATK_ROLE_PAGE_TAB %s\n", name);
return FALSE;
@@ -181,16 +181,16 @@ test_role (void)
name = atk_role_get_name (ATK_ROLE_LAYERED_PANE);
g_return_val_if_fail (name, FALSE);
- if (strcmp (name, "layered-pane") != 0)
+ if (strcmp (name, "layered pane") != 0)
{
g_print ("Unexpected name for ATK_ROLE_LAYERED_PANE %s\n", name);
return FALSE;
}
- role1 = atk_role_for_name ("list-item");
+ role1 = atk_role_for_name ("list item");
if (role1 != ATK_ROLE_LIST_ITEM)
{
- g_print ("Unexpected role for list-item\n");
+ g_print ("Unexpected role for list item\n");
return FALSE;
}