Fix tests

This commit is contained in:
Tyrrrz 2023-02-12 13:13:53 +02:00
parent 53b8927fce
commit 0fdab76a74

View file

@ -24,8 +24,15 @@ public static class ExportWrapper
);
static ExportWrapper()
{
try
{
Directory.Delete(DirPath, true);
}
catch (DirectoryNotFoundException)
{
}
Directory.CreateDirectory(DirPath);
}