[atk/gnome-3-8] tests: fix hyphenation on testrelation.c



commit 8554330034b10e153a5aa4aa1ebed9398549e617
Author: John E <johne53 tiscali co uk>
Date:   Wed Mar 27 15:42:19 2013 +0100

    tests: fix hyphenation on testrelation.c
    
    https://bugzilla.gnome.org/show_bug.cgi?id=696409

 tests/testrelation.c |    8 ++++----
 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;
     }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]