From 587c453a7eaf06fa6c220bd2643d7333589ba489 Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Fri, 16 Jul 2021 01:17:20 +0200 Subject: [PATCH] Reduce timeout in cancellation token test --- 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 2831084..45853ea 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, 10000) + .CancellableThrough(cts.Token, 5000) .ProcessAsynchronously(false); await Task.Delay(300);