From 27fd63ff727c0d818d8be9b1e5b6235afd2dc788 Mon Sep 17 00:00:00 2001 From: Frediano Ziglio Date: Sun, 1 Mar 2020 09:30:16 +0000 Subject: [PATCH] test-quic: Reduce height of test image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Acked-by: Marc-André Lureau --- tests/test-quic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-quic.c b/tests/test-quic.c index 3ed20ec..efc4245 100644 --- a/tests/test-quic.c +++ b/tests/test-quic.c @@ -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;