You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ab...@apache.org on 2018/09/17 10:09:01 UTC

[16/44] lucene-solr:jira/solr-12709: SOLR-6387: Remove/revert dated assertFalse in ExtractingRequestHandlerTest Since this problem does not appear anymore in the latest JVMs.

SOLR-6387: Remove/revert dated assertFalse in ExtractingRequestHandlerTest
Since this problem does not appear anymore in the latest JVMs.


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/a537aa20
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/a537aa20
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/a537aa20

Branch: refs/heads/jira/solr-12709
Commit: a537aa20c104234e19407087202bec9e6c5c1a21
Parents: 3a71bf3
Author: David Smiley <ds...@apache.org>
Authored: Mon Sep 10 11:33:15 2018 -0400
Committer: David Smiley <ds...@apache.org>
Committed: Mon Sep 10 11:33:15 2018 -0400

----------------------------------------------------------------------
 .../solr/handler/extraction/ExtractingRequestHandlerTest.java     | 3 ---
 1 file changed, 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/a537aa20/solr/contrib/extraction/src/test/org/apache/solr/handler/extraction/ExtractingRequestHandlerTest.java
----------------------------------------------------------------------
diff --git a/solr/contrib/extraction/src/test/org/apache/solr/handler/extraction/ExtractingRequestHandlerTest.java b/solr/contrib/extraction/src/test/org/apache/solr/handler/extraction/ExtractingRequestHandlerTest.java
index dc84b51..3241210 100644
--- a/solr/contrib/extraction/src/test/org/apache/solr/handler/extraction/ExtractingRequestHandlerTest.java
+++ b/solr/contrib/extraction/src/test/org/apache/solr/handler/extraction/ExtractingRequestHandlerTest.java
@@ -17,7 +17,6 @@
 package org.apache.solr.handler.extraction;
 import java.util.ArrayList;
 import java.util.List;
-import java.util.Locale;
 
 import org.apache.solr.SolrTestCaseJ4;
 import org.apache.solr.common.SolrException;
@@ -42,8 +41,6 @@ public class ExtractingRequestHandlerTest extends SolrTestCaseJ4 {
 
   @BeforeClass
   public static void beforeClass() throws Exception {
-    assumeFalse("This test fails on UNIX with Turkish default locale (https://issues.apache.org/jira/browse/SOLR-6387)",
-        new Locale("tr").getLanguage().equals(Locale.getDefault().getLanguage()));
     initCore("solrconfig.xml", "schema.xml", getFile("extraction/solr").getAbsolutePath());
   }