diff options
Diffstat (limited to 'testsuite/gtk')
-rw-r--r-- | testsuite/gtk/action.c | 3 | ||||
-rw-r--r-- | testsuite/gtk/notify.c | 3 |
2 files changed, 1 insertions, 5 deletions
diff --git a/testsuite/gtk/action.c b/testsuite/gtk/action.c index 92a1e08ffe..a727b0a0b6 100644 --- a/testsuite/gtk/action.c +++ b/testsuite/gtk/action.c @@ -60,9 +60,6 @@ menu_item_label_notify_count (ActionTest *fixture, g_signal_connect (item, "notify::label", G_CALLBACK (notify_count_emmisions), &emmisions); - gtk_activatable_do_set_related_action (GTK_ACTIVATABLE (item), - fixture->action); - g_assert_cmpuint (emmisions, ==, 1); gtk_action_set_label (fixture->action, "new label"); diff --git a/testsuite/gtk/notify.c b/testsuite/gtk/notify.c index 30131f316e..b0b0be072e 100644 --- a/testsuite/gtk/notify.c +++ b/testsuite/gtk/notify.c @@ -523,8 +523,7 @@ test_type (gconstpointer data) continue; /* Deprecated, not getting fixed */ - if (g_str_equal (g_type_name (pspec->owner_type), "GtkActivatable") || - g_str_equal (g_type_name (pspec->owner_type), "GtkActionGroup") || + if (g_str_equal (g_type_name (pspec->owner_type), "GtkActionGroup") || g_str_equal (g_type_name (pspec->owner_type), "GtkAction")) continue; |