From 80d329a3e70fdba725e707ee663fe16d8a0ad3a7 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 2 Aug 2016 23:59:34 -0400 Subject: [PATCH] Skip GtkShortcutLabel::accelerator in notify test This property is not freely settable, since the string gets parsed. --- testsuite/gtk/notify.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/testsuite/gtk/notify.c b/testsuite/gtk/notify.c index c289c4650f..1970e00496 100644 --- a/testsuite/gtk/notify.c +++ b/testsuite/gtk/notify.c @@ -667,6 +667,10 @@ test_type (gconstpointer data) g_str_equal (pspec->name, "accelerator")) continue; + if (g_type_is_a (type, GTK_TYPE_SHORTCUT_LABEL) && + g_str_equal (pspec->name, "accelerator")) + continue; + if (g_type_is_a (type, GTK_TYPE_FONT_CHOOSER) && g_str_equal (pspec->name, "font")) continue;