From e914f3fe4c3aba6f80c06f2139124fc76e3a5764 Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Sun, 25 Oct 2020 17:42:50 +0100 Subject: [PATCH] More timeouts ... Former-commit-id: da34cf1ec15d308f5f6ed4524b9a06f102fedab4 --- FFMpegCore.Test/FFProbeTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FFMpegCore.Test/FFProbeTests.cs b/FFMpegCore.Test/FFProbeTests.cs index 9329619..7fe928e 100644 --- a/FFMpegCore.Test/FFProbeTests.cs +++ b/FFMpegCore.Test/FFProbeTests.cs @@ -44,7 +44,7 @@ public void Probe_Success() Assert.AreEqual("Main", info.PrimaryVideoStream.Profile); } - [TestMethod] + [TestMethod, Timeout(10000)] public async Task Probe_Async_Success() { var info = await FFProbe.AnalyseAsync(VideoLibrary.LocalVideo.FullName); @@ -59,7 +59,7 @@ public void Probe_Success_FromStream() Assert.AreEqual(3, info.Duration.Seconds); } - [TestMethod] + [TestMethod, Timeout(10000)] public async Task Probe_Success_FromStream_Async() { await using var stream = File.OpenRead(VideoLibrary.LocalVideoWebm.FullName);