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;