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 <victortoso@redhat.com>

https://bugzilla.gnome.org/show_bug.cgi?id=773113
This commit is contained in:
Victor Toso 2016-10-17 18:21:06 +02:00 committed by Matthias Clasen
parent c501867192
commit ebbfbc0bea

View File

@ -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;