diff options
author | Frediano Ziglio <fziglio@redhat.com> | 2020-03-01 09:30:16 +0000 |
---|---|---|
committer | Frediano Ziglio <fziglio@redhat.com> | 2020-03-02 09:57:54 +0000 |
commit | 27fd63ff727c0d818d8be9b1e5b6235afd2dc788 (patch) | |
tree | a0d145e9b4caa3a27c17e63224f0cb69b025450a /tests | |
parent | df66d9a15121bac9428e88c31cc8b65fd8c78347 (diff) |
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>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-quic.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |