From 4787042f3eaef2aa364fdd43b967e93dcedf2c19 Mon Sep 17 00:00:00 2001 From: Simon Willnauer Date: Fri, 28 Aug 2020 10:51:43 +0200 Subject: [PATCH] LUCENE-9447: suppress DeflateWithPresetCompressingStoredFieldsData since it doesn't add any attributes --- .../org/apache/lucene/luke/models/commits/CommitsImplTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lucene/luke/src/test/org/apache/lucene/luke/models/commits/CommitsImplTest.java b/lucene/luke/src/test/org/apache/lucene/luke/models/commits/CommitsImplTest.java index 1c6e513a9b6..558875489d9 100644 --- a/lucene/luke/src/test/org/apache/lucene/luke/models/commits/CommitsImplTest.java +++ b/lucene/luke/src/test/org/apache/lucene/luke/models/commits/CommitsImplTest.java @@ -39,7 +39,7 @@ import org.junit.Test; // See: https://github.com/DmitryKey/luke/issues/111 @LuceneTestCase.SuppressCodecs({ - "SimpleText", "DummyCompressingStoredFieldsData", "HighCompressionCompressingStoredFieldsData", "FastCompressingStoredFieldsData", "FastDecompressionCompressingStoredFieldsData" + "SimpleText", "DeflateWithPresetCompressingStoredFieldsData", "DummyCompressingStoredFieldsData", "HighCompressionCompressingStoredFieldsData", "FastCompressingStoredFieldsData", "FastDecompressionCompressingStoredFieldsData" }) public class CommitsImplTest extends LuceneTestCase {