From 5ae53f643a6df30a6788d6ab7ea1ad28be7364c1 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Fri, 22 May 2009 01:35:47 +0200 Subject: [PATCH] Skip the AddSpeedDial action in the browser test --- tests/browser.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/browser.c b/tests/browser.c index 1ee15369..6af1210b 100644 --- a/tests/browser.c +++ b/tests/browser.c @@ -38,7 +38,8 @@ browser_create (void) GtkAction* action = actions->data; if (g_strcmp0 (gtk_action_get_name (action), "WindowClose")) if (g_strcmp0 (gtk_action_get_name (action), "EncodingCustom")) - gtk_action_activate (action); + if (g_strcmp0 (gtk_action_get_name (action), "AddSpeedDial")) + gtk_action_activate (action); actions = g_list_next (actions); } g_list_free (actions);