mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-25 13:01:07 +00:00
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: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1258>
This commit is contained in:
parent
effe1bacdf
commit
8366716456
1 changed files with 2 additions and 2 deletions
|
@ -1020,7 +1020,7 @@ fn test_two_stream_close_open_nonlivein_liveout() {
|
||||||
.send(SendData::Buffers(main_buffers_in_gap as usize))
|
.send(SendData::Buffers(main_buffers_in_gap as usize))
|
||||||
.unwrap();
|
.unwrap();
|
||||||
assert_eq!(
|
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)
|
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))
|
.send(SendData::Buffers((secondary_buffers_in_gap) as usize))
|
||||||
.unwrap();
|
.unwrap();
|
||||||
assert_eq!(
|
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)
|
Err(mpsc::RecvTimeoutError::Timeout)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue