You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by to...@apache.org on 2019/04/19 02:08:06 UTC

[lucene-solr] branch master updated: LUCENE-2562: Suppress SimpleText codec for CommitsImplTest.

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

tomoko 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 7ba8bdc  LUCENE-2562: Suppress SimpleText codec for CommitsImplTest.
7ba8bdc is described below

commit 7ba8bdca8fac64826e8d9a2e4db5b779a2fa6f83
Author: Tomoko Uchida <to...@apache.org>
AuthorDate: Fri Apr 19 11:03:35 2019 +0900

    LUCENE-2562: Suppress SimpleText codec for CommitsImplTest.
---
 .../src/test/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 7e968d2..95b8427 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({
-    "DummyCompressingStoredFields", "HighCompressionCompressingStoredFields", "FastCompressingStoredFields", "FastDecompressionCompressingStoredFields"
+   "SimpleText", "DummyCompressingStoredFields", "HighCompressionCompressingStoredFields", "FastCompressingStoredFields", "FastDecompressionCompressingStoredFields"
 })
 public class CommitsImplTest extends LuceneTestCase {