Skip to content

Commit e3bd274

Browse files
fix failing tests
See a55b85e
1 parent a8f2f63 commit e3bd274

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

grails-core/src/main/groovy/grails/validation/ValidationException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public static String formatErrors(Errors errors, String msg) {
5454
b.append(msg).append(":\n");
5555
}
5656
for (ObjectError error : errors.getAllErrors()) {
57-
b.append("\n- ").append(error).append("\n");
57+
b.append("- ").append(error).append("\n");
5858
}
5959
return b.toString();
6060
}

0 commit comments

Comments
 (0)