diff options
author | Matthias Clasen <mclasen@redhat.com> | 2016-08-02 23:59:34 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2016-08-02 23:59:34 -0400 |
commit | 80d329a3e70fdba725e707ee663fe16d8a0ad3a7 (patch) | |
tree | 98b3156e9306504d2544a53c6bf30142dcecbef1 | |
parent | 2de6b0800d88702d3e4208defb6136fa635b7143 (diff) | |
download | gtk+-80d329a3e70fdba725e707ee663fe16d8a0ad3a7.tar.gz |
Skip GtkShortcutLabel::accelerator in notify test
This property is not freely settable, since the string
gets parsed.
-rw-r--r-- | testsuite/gtk/notify.c | 4 |
1 files changed, 4 insertions, 0 deletions
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; |