Fix usage of temp subfolder

This commit is contained in:
Malte Rosenbjerg 2025-10-17 15:17:27 +02:00
parent 54e28cea23
commit 8720e19b91

View file

@ -14,7 +14,7 @@ public class DownloaderTests
{ {
var tempDownloadFolder = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString()); var tempDownloadFolder = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());
Directory.CreateDirectory(tempDownloadFolder); Directory.CreateDirectory(tempDownloadFolder);
_ffOptions = new FFOptions { BinaryFolder = Path.GetTempPath() }; _ffOptions = new FFOptions { BinaryFolder = tempDownloadFolder };
} }
[OsSpecificTestMethod(OsPlatforms.Windows | OsPlatforms.Linux)] [OsSpecificTestMethod(OsPlatforms.Windows | OsPlatforms.Linux)]