diff --git a/Codeforces.Test/Tests.cs b/Codeforces.Test/Tests.cs index 2518e85..a719b3b 100644 --- a/Codeforces.Test/Tests.cs +++ b/Codeforces.Test/Tests.cs @@ -57,13 +57,13 @@ public class Tests } public class FileNameGenerator : IEnumerable { - private readonly string inputFolder = @"..\..\..\Input"; + private readonly string inputFolder = @"../../../Input"; public IEnumerator GetEnumerator() { foreach (var input in Directory.GetFiles(inputFolder)) { string name = Path.GetFileName(input); - string output = $"..\\..\\..\\Output\\{name}.a"; + string output = $"../../../Output/{name}.a"; yield return new object[] { input, output }; } }