From 71f9d082d4e8c039ae260a54a3f9c7e7f84a5de6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 16 Apr 2024 13:58:07 +0000 Subject: [PATCH] Suppress sys out checks as trace logs enabled during tests can cause failures (#13188) Signed-off-by: mgodwan (cherry picked from commit 3e8e116aca6e26552ea3c4443afdf2ef2108be88) Signed-off-by: github-actions[bot] --- .../index/codec/fuzzy/FuzzyFilterPostingsFormatTests.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/src/test/java/org/opensearch/index/codec/fuzzy/FuzzyFilterPostingsFormatTests.java b/server/src/test/java/org/opensearch/index/codec/fuzzy/FuzzyFilterPostingsFormatTests.java index 868c2175d0689..c92ee191193c6 100644 --- a/server/src/test/java/org/opensearch/index/codec/fuzzy/FuzzyFilterPostingsFormatTests.java +++ b/server/src/test/java/org/opensearch/index/codec/fuzzy/FuzzyFilterPostingsFormatTests.java @@ -10,10 +10,12 @@ import org.apache.lucene.codecs.Codec; import org.apache.lucene.tests.index.BasePostingsFormatTestCase; +import org.apache.lucene.tests.util.LuceneTestCase; import org.apache.lucene.tests.util.TestUtil; import java.util.TreeMap; +@LuceneTestCase.SuppressSysoutChecks(bugUrl = "we log a lot on purpose") public class FuzzyFilterPostingsFormatTests extends BasePostingsFormatTestCase { private TreeMap params = new TreeMap<>() {