Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Jan 21, 2022
1 parent ea3ae57 commit b5a8ebf
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -43,7 +43,8 @@ void version() throws IOException, InterruptedException {
.assertSuccess();
String xmx = "-Xmx512k";
assertTrue(o.getMessages().stream()
.anyMatch(m -> m.toString().contains(xmx)), "Output should contain " + xmx + " but is:\n"
.anyMatch(m -> m.toString().contains(xmx)),
"Output should contain " + xmx + " but is:\n"
+ o.getMessages().stream().map(Object::toString).collect(Collectors.joining("\n")));
}

Expand Down

0 comments on commit b5a8ebf

Please sign in to comment.