Skip to content

Commit

Permalink
One logger indexed by maven plugin removed
Browse files Browse the repository at this point in the history
Signed-off-by: David Matějček <david.matejcek@omnifish.ee>
  • Loading branch information
dmatej committed Nov 14, 2022
1 parent 620a27f commit 37cc96c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public void listLoggers() {
assertThat(result, asadminOK());
String[] lines = substringBefore(result.getStdOut(), "Command list-loggers executed successfully.").split("\n");
assertAll(
() -> assertThat(lines, arrayWithSize(equalTo(62))),
() -> assertThat(lines, arrayWithSize(equalTo(61))),
() -> assertThat(lines[0], matchesPattern("Logger Name[ ]+Subsystem[ ]+Logger Description[ ]+"))
);
Map<String, String[]> loggers = Arrays.stream(lines).skip(1).map(line -> line.split("\\s{2,}"))
Expand Down

0 comments on commit 37cc96c

Please sign in to comment.