Increase timeout on failing unit test

Former-commit-id: 04ebdb1907
This commit is contained in:
Malte Rosenbjerg 2021-08-10 10:38:56 +02:00
parent 70d770ffd3
commit bc00b6786a

View file

@ -655,7 +655,7 @@ public async Task Video_Cancel_CancellationToken_Async_With_Timeout()
.WithAudioCodec(AudioCodec.Aac) .WithAudioCodec(AudioCodec.Aac)
.WithVideoCodec(VideoCodec.LibX264) .WithVideoCodec(VideoCodec.LibX264)
.WithSpeedPreset(Speed.VeryFast)) .WithSpeedPreset(Speed.VeryFast))
.CancellableThrough(cts.Token, 5000) .CancellableThrough(cts.Token, 8000)
.ProcessAsynchronously(false); .ProcessAsynchronously(false);
await Task.Delay(300); await Task.Delay(300);