aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerghei Cebotari <serghei@cebotari.ru>2023-08-13 15:49:53 +0300
committerSerghei Cebotari <serghei@cebotari.ru>2023-08-13 15:49:53 +0300
commit7ff9601f528dc743e00ebc0486d1c7a67006a000 (patch)
tree5ee83a45920b94095ae76363c9890bb803ad9919
parentc20bff382ed01993a7f05ff6425fc82cfe27fec4 (diff)
Linux paths fix
-rw-r--r--Codeforces.Test/Tests.cs4
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 };
}
}