From 8366716456cff112afcbd621f339f07a8e828bbe Mon Sep 17 00:00:00 2001 From: Vivia Nikolaidou Date: Fri, 23 Jun 2023 16:05:26 +0300 Subject: togglerecord: Change test_two_stream_close_open_nonlivein_liveout timeout to 60ms 20ms was not enough for the CI. Closes https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/379 Part-of: --- utils/togglerecord/tests/tests.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils') diff --git a/utils/togglerecord/tests/tests.rs b/utils/togglerecord/tests/tests.rs index 1a72881f4..e59fcdfcc 100644 --- a/utils/togglerecord/tests/tests.rs +++ b/utils/togglerecord/tests/tests.rs @@ -1020,7 +1020,7 @@ fn test_two_stream_close_open_nonlivein_liveout() { .send(SendData::Buffers(main_buffers_in_gap as usize)) .unwrap(); assert_eq!( - receiver_input_done_1.recv_timeout(Duration::from_millis(20)), + receiver_input_done_1.recv_timeout(Duration::from_millis(60)), Err(mpsc::RecvTimeoutError::Timeout) ); @@ -1029,7 +1029,7 @@ fn test_two_stream_close_open_nonlivein_liveout() { .send(SendData::Buffers((secondary_buffers_in_gap) as usize)) .unwrap(); assert_eq!( - receiver_input_done_2.recv_timeout(Duration::from_millis(20)), + receiver_input_done_2.recv_timeout(Duration::from_millis(60)), Err(mpsc::RecvTimeoutError::Timeout) ); -- cgit v1.2.3