diff options
Diffstat (limited to 'Codeforces.Test/Tests.cs')
-rw-r--r-- | Codeforces.Test/Tests.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Codeforces.Test/Tests.cs b/Codeforces.Test/Tests.cs index db4dace..38061d2 100644 --- a/Codeforces.Test/Tests.cs +++ b/Codeforces.Test/Tests.cs @@ -30,11 +30,10 @@ public class Tests }; string[] actualOutput = IOTester.GetOutputLines(); - Assert.Equal(output.Length, actualOutput.Length - 1); + Assert.Equal(output.Length, actualOutput.Length); for (int i = 0; i< output.Length; i++) { Assert.Equal(output[i], actualOutput[i]); } } - }
\ No newline at end of file |