From 7ff9601f528dc743e00ebc0486d1c7a67006a000 Mon Sep 17 00:00:00 2001 From: Serghei Cebotari Date: Sun, 13 Aug 2023 15:49:53 +0300 Subject: [PATCH] Linux paths fix --- Codeforces.Test/Tests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }; } }