From b11227be2d4477d3a3ce2fa3a6447d0fd82b8f1c Mon Sep 17 00:00:00 2001 From: Serghei Cebotari Date: Wed, 9 Aug 2023 15:10:40 +0300 Subject: Fix last line --- Codeforces.Test/Tests.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Codeforces.Test') 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 -- cgit v1.2.3