From 508cce882773fc0d73f5950aaee1eb59fab3593a Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Thu, 23 Feb 2023 22:00:19 +0100 Subject: [PATCH] Change test path to non-existing directory --- FFMpegCore.Test/FFMpegArgumentProcessorTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FFMpegCore.Test/FFMpegArgumentProcessorTest.cs b/FFMpegCore.Test/FFMpegArgumentProcessorTest.cs index 7652d48..289234f 100644 --- a/FFMpegCore.Test/FFMpegArgumentProcessorTest.cs +++ b/FFMpegCore.Test/FFMpegArgumentProcessorTest.cs @@ -106,7 +106,7 @@ public void Audible_Aax_Test() [TestMethod] public void Throws_FFMpegException_when_ffmpeg_not_found() { - var exception = Assert.ThrowsException(() => FFMpegHelper.VerifyFFMpegExists(new FFOptions { BinaryFolder = Path.GetTempPath() })); + var exception = Assert.ThrowsException(() => FFMpegHelper.VerifyFFMpegExists(new FFOptions { BinaryFolder = "./folder/that/does/not/exist" })); Assert.IsInstanceOfType(exception.InnerException); } }