Improve resetting

This commit is contained in:
Malte Rosenbjerg 2025-10-16 14:14:47 +02:00
parent 65e8ba85e3
commit 0c467e3a05
3 changed files with 3 additions and 6 deletions

View file

@ -1 +1 @@
[assembly: Parallelize]
[assembly: Parallelize(Scope = ExecutionScope.ClassLevel)]

View file

@ -1,6 +1,4 @@
using FFMpegCore.Arguments;
namespace FFMpegCore.Test;
namespace FFMpegCore.Test;
[TestClass]
public class FFMpegArgumentProcessorTest

View file

@ -29,7 +29,6 @@ public class FFMpegOptionsTest
[TestMethod]
public void Options_Set_Programmatically()
{
var original = GlobalFFOptions.Current;
try
{
GlobalFFOptions.Configure(new FFOptions { BinaryFolder = "Whatever" });
@ -40,7 +39,7 @@ public class FFMpegOptionsTest
}
finally
{
GlobalFFOptions.Configure(original);
GlobalFFOptions.Configure(new FFOptions());
}
}
}