test-quic: Reduce height of test image

There's no much need for than size to be so big, limit to
reduce execution time, coverage stays more or less the same.

Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Acked-by: Marc-André Lureau <marcandre.lureau@gmail.com>
This commit is contained in:
Frediano Ziglio 2020-03-01 09:30:16 +00:00
parent df66d9a151
commit 27fd63ff72

View File

@ -343,7 +343,7 @@ static GdkPixbuf *pixbuf_new_random(void)
{
gboolean has_alpha = g_random_boolean();
gint width = g_random_int_range(100, 2000);
gint height = g_random_int_range(100, 2000);
gint height = g_random_int_range(100, 500);
GdkPixbuf *random_pixbuf;
guint i, size;
guint8 *pixels;