From 8720e19b9118ec8df9fa36ddece7a1469561df2e Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Fri, 17 Oct 2025 15:17:27 +0200 Subject: [PATCH] Fix usage of temp subfolder --- FFMpegCore.Test/DownloaderTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FFMpegCore.Test/DownloaderTests.cs b/FFMpegCore.Test/DownloaderTests.cs index bc2208c..a5af850 100644 --- a/FFMpegCore.Test/DownloaderTests.cs +++ b/FFMpegCore.Test/DownloaderTests.cs @@ -14,7 +14,7 @@ public class DownloaderTests { var tempDownloadFolder = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString()); Directory.CreateDirectory(tempDownloadFolder); - _ffOptions = new FFOptions { BinaryFolder = Path.GetTempPath() }; + _ffOptions = new FFOptions { BinaryFolder = tempDownloadFolder }; } [OsSpecificTestMethod(OsPlatforms.Windows | OsPlatforms.Linux)]