Skip to content

Commit

Permalink
Fix format issue
Browse files Browse the repository at this point in the history
  • Loading branch information
XJ114514 committed Sep 14, 2024
1 parent e8d11bd commit 7b4088d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ private void printSummary(TestExecutionSummary summary, PrintWriter out) {
out.printf(
"\nPlease put the diff result below into a online markdown editor to see markdown effect: \n");
for (DiffRow row : rows) {
out.printf(" | %s | %s | \n",row.getOldLine(),row.getNewLine());
out.printf(" | %s | %s | \n", row.getOldLine(), row.getNewLine());
}
}

Expand Down

0 comments on commit 7b4088d

Please sign in to comment.