From 440ff48bba1165cae184c97eab84c3dd692f85b8 Mon Sep 17 00:00:00 2001 From: Victor Toso Date: Mon, 17 Oct 2016 18:21:06 +0200 Subject: [PATCH] tests: fix clipboard test by loading correct icon The icon name changed from "terminal" to "utilities-terminal" in Adwaita-icon-theme. Signed-off-by: Victor Toso https://bugzilla.gnome.org/show_bug.cgi?id=773113 --- tests/testclipboard.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/testclipboard.c b/tests/testclipboard.c index 2c7ed7384d..5c072013a5 100644 --- a/tests/testclipboard.c +++ b/tests/testclipboard.c @@ -81,7 +81,8 @@ on_response (GtkDialog *dialog, GtkIconTheme *theme; GdkPixbuf *pixbuf; theme = gtk_icon_theme_get_default (); - pixbuf = gtk_icon_theme_load_icon (theme, "terminal", 1600, 0, NULL); + pixbuf = gtk_icon_theme_load_icon (theme, "utilities-terminal", 1600, 0, NULL); + g_assert_nonnull (pixbuf); gtk_clipboard_set_image (clipboard, pixbuf); } break; @@ -91,7 +92,8 @@ on_response (GtkDialog *dialog, GtkIconTheme *theme; GdkPixbuf *pixbuf; theme = gtk_icon_theme_get_default (); - pixbuf = gtk_icon_theme_load_icon (theme, "terminal", 48, 0, NULL); + pixbuf = gtk_icon_theme_load_icon (theme, "utilities-terminal", 48, 0, NULL); + g_assert_nonnull (pixbuf); gtk_clipboard_set_image (clipboard, pixbuf); } break;