You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by cp...@apache.org on 2016/10/31 14:06:13 UTC

[20/37] lucene-solr:jira/solr-8542-v2: SOLR-9481: Try to fix flaky test error by removing unnecessary initCore() in @Before method

SOLR-9481: Try to fix flaky test error by removing unnecessary initCore() in @Before method


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

Branch: refs/heads/jira/solr-8542-v2
Commit: 1f06411946237eff51f7d23bc52eb64e76a1c18b
Parents: f56d111
Author: Jan H�ydahl <ja...@apache.org>
Authored: Fri Oct 28 15:04:49 2016 +0200
Committer: Jan H�ydahl <ja...@apache.org>
Committed: Fri Oct 28 15:04:49 2016 +0200

----------------------------------------------------------------------
 .../src/test/org/apache/solr/security/BasicAuthStandaloneTest.java  | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/1f064119/solr/core/src/test/org/apache/solr/security/BasicAuthStandaloneTest.java
----------------------------------------------------------------------
diff --git a/solr/core/src/test/org/apache/solr/security/BasicAuthStandaloneTest.java b/solr/core/src/test/org/apache/solr/security/BasicAuthStandaloneTest.java
index 33c0ab3..55e78e7 100644
--- a/solr/core/src/test/org/apache/solr/security/BasicAuthStandaloneTest.java
+++ b/solr/core/src/test/org/apache/solr/security/BasicAuthStandaloneTest.java
@@ -71,7 +71,6 @@ public class BasicAuthStandaloneTest extends AbstractSolrTestCase {
     instance = new SolrInstance("inst", null);
     instance.setUp();
     jetty = createJetty(instance);
-    initCore("solrconfig.xml", "schema.xml", instance.getHomeDir().toString());
     securityConfHandler = new SecurityConfHandlerLocalForTesting(jetty.getCoreContainer());
   }