You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2020/02/06 09:34:56 UTC

[lucene-solr] branch master updated: LUCENE-9147: Fix codec excludes.

This is an automated email from the ASF dual-hosted git repository.

jpountz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new fdf5ade  LUCENE-9147: Fix codec excludes.
fdf5ade is described below

commit fdf5ade727ea8a5a6232d421a33b3fa1495d93b3
Author: Adrien Grand <jp...@gmail.com>
AuthorDate: Thu Feb 6 10:33:44 2020 +0100

    LUCENE-9147: Fix codec excludes.
---
 .../src/test/org/apache/lucene/luke/models/commits/CommitsImplTest.java | 2 +-
 .../test/org/apache/lucene/luke/models/documents/DocumentsImplTest.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

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 95b8427..1c6e513 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", "DummyCompressingStoredFields", "HighCompressionCompressingStoredFields", "FastCompressingStoredFields", "FastDecompressionCompressingStoredFields"
+   "SimpleText", "DummyCompressingStoredFieldsData", "HighCompressionCompressingStoredFieldsData", "FastCompressingStoredFieldsData", "FastDecompressionCompressingStoredFieldsData"
 })
 public class CommitsImplTest extends LuceneTestCase {
 
diff --git a/lucene/luke/src/test/org/apache/lucene/luke/models/documents/DocumentsImplTest.java b/lucene/luke/src/test/org/apache/lucene/luke/models/documents/DocumentsImplTest.java
index 730d251..01a1f67 100644
--- a/lucene/luke/src/test/org/apache/lucene/luke/models/documents/DocumentsImplTest.java
+++ b/lucene/luke/src/test/org/apache/lucene/luke/models/documents/DocumentsImplTest.java
@@ -31,7 +31,7 @@ import org.junit.Test;
 
 // See: https://github.com/DmitryKey/luke/issues/133
 @LuceneTestCase.SuppressCodecs({
-    "DummyCompressingStoredFields", "HighCompressionCompressingStoredFields", "FastCompressingStoredFields", "FastDecompressionCompressingStoredFields"
+    "DummyCompressingStoredFieldsData", "HighCompressionCompressingStoredFieldsData", "FastCompressingStoredFieldsData", "FastDecompressionCompressingStoredFieldsData"
 })
 public class DocumentsImplTest extends DocumentsTestBase {