From d70c8939f224f6e3c56f3ae326b8208245c5018b Mon Sep 17 00:00:00 2001 From: Keith Turner Date: Fri, 18 Oct 2024 17:51:40 +0000 Subject: [PATCH] fix comment --- test/src/main/java/org/apache/accumulo/test/FateSummaryIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/main/java/org/apache/accumulo/test/FateSummaryIT.java b/test/src/main/java/org/apache/accumulo/test/FateSummaryIT.java index 932b5ce9661..7830de57d9e 100644 --- a/test/src/main/java/org/apache/accumulo/test/FateSummaryIT.java +++ b/test/src/main/java/org/apache/accumulo/test/FateSummaryIT.java @@ -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);