[gtk/wip/matthiasc/shortcut: 3/5] Fix the action test
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/wip/matthiasc/shortcut: 3/5] Fix the action test
- Date: Fri, 20 Mar 2020 04:00:28 +0000 (UTC)
commit b63a2ba4a1741f9738b1f4136769d053e1aef501
Author: Matthias Clasen <mclasen redhat com>
Date: Thu Mar 19 14:29:37 2020 -0400
Fix the action test
We have a test that enumerates the GtkText actions,
so when a new open appears, the test needs to be updated.
testsuite/gtk/action.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/testsuite/gtk/action.c b/testsuite/gtk/action.c
index 23a78fa23e..f15dce7ac1 100644
--- a/testsuite/gtk/action.c
+++ b/testsuite/gtk/action.c
@@ -360,6 +360,7 @@ test_introspection (void)
} expected[] = {
{ GTK_TYPE_TEXT, "text.undo", NULL, NULL },
{ GTK_TYPE_TEXT, "text.redo", NULL, NULL },
+ { GTK_TYPE_TEXT, "menu.popup", NULL, NULL },
{ GTK_TYPE_TEXT, "clipboard.cut", NULL, NULL },
{ GTK_TYPE_TEXT, "clipboard.copy", NULL, NULL },
{ GTK_TYPE_TEXT, "clipboard.paste", NULL, NULL },
@@ -378,9 +379,9 @@ test_introspection (void)
&property))
{
g_assert (expected[i].owner == owner);
- g_assert (strcmp (expected[i].name, name) == 0);
- g_assert (g_strcmp0 (expected[i].params, params ? g_variant_type_peek_string (params) : NULL) == 0);
- g_assert (g_strcmp0 (expected[i].property, property) == 0);
+ g_assert_cmpstr (expected[i].name, ==, name);
+ g_assert_cmpstr (expected[i].params, ==, params ? g_variant_type_peek_string (params) : NULL);
+ g_assert_cmpstr (expected[i].property, ==, property);
i++;
}
g_assert (i == G_N_ELEMENTS (expected));
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]