From: Christian Dywan Date: Thu, 21 May 2009 23:35:47 +0000 (+0200) Subject: Skip the AddSpeedDial action in the browser test X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ae53f643a6df30a6788d6ab7ea1ad28be7364c1;p=midori Skip the AddSpeedDial action in the browser test --- 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);