diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2023-08-13 15:49:53 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2023-08-13 15:49:53 +0300 |
commit | 7ff9601f528dc743e00ebc0486d1c7a67006a000 (patch) | |
tree | 5ee83a45920b94095ae76363c9890bb803ad9919 | |
parent | c20bff382ed01993a7f05ff6425fc82cfe27fec4 (diff) |
Linux paths fix
-rw-r--r-- | Codeforces.Test/Tests.cs | 4 |
1 files 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<object[]> { - private readonly string inputFolder = @"..\..\..\Input"; + private readonly string inputFolder = @"../../../Input"; public IEnumerator<object[]> 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 }; } } |