summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-06-28 10:58:24 -0400
committerMatthias Clasen <mclasen@redhat.com>2014-06-28 10:58:24 -0400
commitf1c1192e7183a2209ba85cbb5b279d18ee795342 (patch)
tree89df8605b302c90a40750f1108b7f3572041f815
parent733a590fbedb57f67dca1c8a690077f315e5fe6c (diff)
downloadgtk+-f1c1192e7183a2209ba85cbb5b279d18ee795342.tar.gz
Exclude GtkToggleButton::draw-indicator from the notification test
We reverted to emitting redundant notifications for this, so don't assert that we don't.
-rw-r--r--testsuite/gtk/notify.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/testsuite/gtk/notify.c b/testsuite/gtk/notify.c
index e86ca65f4b..0b963a5a2f 100644
--- a/testsuite/gtk/notify.c
+++ b/testsuite/gtk/notify.c
@@ -486,6 +486,10 @@ test_type (gconstpointer data)
g_str_equal (pspec->name, "page"))
continue;
+ if (g_type_is_a (pspec->owner_type, GTK_TYPE_TOGGLE_BUTTON) &&
+ g_str_equal (pspec->name, "draw-indicator"))
+ continue;
+
/* Not supported in subclass */
if (g_str_equal (g_type_name (type), "GtkRecentAction") &&
g_str_equal (pspec->name, "select-multiple"))