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:05:09 UTC

[lucene-solr] branch jira/lucene-2562-luke-swing-3 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 jira/lucene-2562-luke-swing-3
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/jira/lucene-2562-luke-swing-3 by this push:
     new 3b3f209  LUCENE-2562: Suppress SimpleText codec for CommitsImplTest.
     new cb350a5  Merge branch 'jira/lucene-2562-luke-swing-3' of https://gitbox.apache.org/repos/asf/lucene-solr into jira/lucene-2562-luke-swing-3
3b3f209 is described below

commit 3b3f209a262392d54da371f8a39d2b6be86b51cf
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 {