aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 };
}
}