Skip to content

Commit b4ea979

Browse files
authored
fix: replace print with println
1 parent a177492 commit b4ea979

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/edu/kit/provideq/toolbox/api/ApiTestHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ public static <InputT, ResultT> ProblemDto<InputT, ResultT> trySolveFor(
200200
}
201201

202202
if (hasTimeout.get()) {
203-
System.out.print("Stopping testcase due to timeout.");
203+
System.out.println("Stopping testcase due to timeout.");
204204
System.out.println("log: " + builder);
205205
throw new IllegalStateException("Problem did not solve in time: " + problemDto);
206206
}

0 commit comments

Comments
 (0)