aboutsummaryrefslogtreecommitdiff
path: root/Codeforces.Test
diff options
context:
space:
mode:
authorSerghei Cebotari <serghei@cebotari.ru>2023-08-09 15:10:40 +0300
committerSerghei Cebotari <serghei@cebotari.ru>2023-08-09 15:10:40 +0300
commitb11227be2d4477d3a3ce2fa3a6447d0fd82b8f1c (patch)
tree45fbb8bb92724f5c7f8cb3c86f631fb79b1c5cb8 /Codeforces.Test
parentc9ca856d8f76d3b4c86532defa04d47c0d0a17f2 (diff)
Fix last line
Diffstat (limited to 'Codeforces.Test')
-rw-r--r--Codeforces.Test/Tests.cs3
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