aboutsummaryrefslogtreecommitdiff
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
parentc9ca856d8f76d3b4c86532defa04d47c0d0a17f2 (diff)
Fix last line
-rw-r--r--Codeforces.Console/IOTester.cs4
-rw-r--r--Codeforces.Test/Tests.cs3
2 files changed, 3 insertions, 4 deletions
diff --git a/Codeforces.Console/IOTester.cs b/Codeforces.Console/IOTester.cs
index c5ffc77..8fdb931 100644
--- a/Codeforces.Console/IOTester.cs
+++ b/Codeforces.Console/IOTester.cs
@@ -33,7 +33,7 @@ namespace Codeforces
{
if (stdOut == null)
{
- return "";
+ return string.Empty;
}
else
{
@@ -43,7 +43,7 @@ namespace Codeforces
public static string[] GetOutputLines()
{
- return GetOutput().Split(Environment.NewLine);
+ return GetOutput().Split(Environment.NewLine).SkipLast(1).ToArray();
}
public static IList<string> GetOutputLinesAsList()
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