From bc00b6786a744260848f918dceffe1ce0eb2a38e Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Tue, 10 Aug 2021 10:38:56 +0200 Subject: [PATCH] Increase timeout on failing unit test Former-commit-id: 04ebdb1907b9569bc43f7dc9744eb05f760f4cc4 --- FFMpegCore.Test/VideoTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FFMpegCore.Test/VideoTest.cs b/FFMpegCore.Test/VideoTest.cs index 45853ea..27ec79e 100644 --- a/FFMpegCore.Test/VideoTest.cs +++ b/FFMpegCore.Test/VideoTest.cs @@ -655,7 +655,7 @@ public async Task Video_Cancel_CancellationToken_Async_With_Timeout() .WithAudioCodec(AudioCodec.Aac) .WithVideoCodec(VideoCodec.LibX264) .WithSpeedPreset(Speed.VeryFast)) - .CancellableThrough(cts.Token, 5000) + .CancellableThrough(cts.Token, 8000) .ProcessAsynchronously(false); await Task.Delay(300);