From c778686a3c933d40ac244b8660afa50e73d03bf0 Mon Sep 17 00:00:00 2001 From: Haihao Xiang Date: Tue, 11 May 2021 12:01:03 +0800 Subject: [PATCH] test: enlarge the number This is to make sure the case can pass after adding new video formats. Part-of: --- tests/check/libs/video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/check/libs/video.c b/tests/check/libs/video.c index 897d9d720b..923e73d0f7 100644 --- a/tests/check/libs/video.c +++ b/tests/check/libs/video.c @@ -368,7 +368,7 @@ video_format_is_packed (GstVideoFormat fmt) static gint get_num_formats (void) { - gint num_formats = 100; + gint num_formats = 200; fail_unless (gst_video_format_to_string (num_formats) == NULL); while (gst_video_format_to_string (num_formats) == NULL) --num_formats;