Commit 9cd21dd5 authored by Adam Blank's avatar Adam Blank
Browse files

Merge branch 'lab09testfix' into 'master'

Fix output of test

See merge request !3
1 merge request!3Fix output of test
Pipeline #10097 failed with stage
in 0 seconds
Showing with 1 addition and 1 deletion
+1 -1
......@@ -172,7 +172,7 @@ public class BfsTest {
String out = capture.toString().replace("\r\n", "\n").strip();
String sln = new String(Files.readAllBytes(Paths.get(acceptablePath)));
sln = sln.replace("\r\n", "\n").strip();
assertEquals(out, sln, "Output log is not correct. Solver is either not correct or not BFS.");
assertEquals(sln, out, "Output log is not correct. Solver is either not correct or not BFS.");
}
@Tag("A")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment