mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-01-18 12:36:44 +00:00
Change test path to non-existing directory
This commit is contained in:
parent
349b6044d1
commit
508cce8827
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ public void Audible_Aax_Test()
|
|||
[TestMethod]
|
||||
public void Throws_FFMpegException_when_ffmpeg_not_found()
|
||||
{
|
||||
var exception = Assert.ThrowsException<FFMpegException>(() => FFMpegHelper.VerifyFFMpegExists(new FFOptions { BinaryFolder = Path.GetTempPath() }));
|
||||
var exception = Assert.ThrowsException<FFMpegException>(() => FFMpegHelper.VerifyFFMpegExists(new FFOptions { BinaryFolder = "./folder/that/does/not/exist" }));
|
||||
Assert.IsInstanceOfType<InstanceFileNotFoundException>(exception.InnerException);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue