Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
keith-turner committed Oct 18, 2024
1 parent 6df3376 commit d70c893
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public void testFateSummaryCommandWithSlowCompaction() throws Exception {
"IN_PROGRESS", "-s", "FAILED");
assertEquals(0, p.getProcess().waitFor());
String result = p.readStdOut();
// remove an log messages
// remove any log messages
result = result.lines().filter(line -> !line.matches(".*(INFO|DEBUG|WARN|ERROR).*"))
.collect(Collectors.joining("\n"));
FateSummaryReport report = FateSummaryReport.fromJson(result);
Expand Down

0 comments on commit d70c893

Please sign in to comment.