mirror of https://github.com/apache/lucene.git
SOLR-6589: Test is fixed by the commit in SOLR-6590
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1629923 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3f99989544
commit
4244b5f82d
|
@ -18,18 +18,8 @@
|
||||||
package org.apache.solr.client.solrj;
|
package org.apache.solr.client.solrj;
|
||||||
|
|
||||||
|
|
||||||
import java.io.IOException;
|
import com.google.common.collect.Maps;
|
||||||
import java.lang.reflect.Field;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.Collection;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Random;
|
|
||||||
|
|
||||||
import junit.framework.Assert;
|
import junit.framework.Assert;
|
||||||
|
|
||||||
import org.apache.lucene.util.TestUtil;
|
import org.apache.lucene.util.TestUtil;
|
||||||
import org.apache.solr.SolrTestCaseJ4.SuppressSSL;
|
import org.apache.solr.SolrTestCaseJ4.SuppressSSL;
|
||||||
import org.apache.solr.client.solrj.embedded.EmbeddedSolrServer;
|
import org.apache.solr.client.solrj.embedded.EmbeddedSolrServer;
|
||||||
|
@ -61,7 +51,18 @@ import org.junit.Test;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
import com.google.common.collect.Maps;
|
import java.io.IOException;
|
||||||
|
import java.lang.reflect.Field;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Iterator;
|
||||||
|
import java.util.LinkedHashSet;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Random;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This should include tests against the example solr config
|
* This should include tests against the example solr config
|
||||||
|
@ -83,7 +84,6 @@ abstract public class SolrExampleTests extends SolrExampleTestsBase
|
||||||
* query the example
|
* query the example
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
@AwaitsFix(bugUrl="https://issues.apache.org/jira/browse/SOLR-6589")
|
|
||||||
public void testExampleConfig() throws Exception
|
public void testExampleConfig() throws Exception
|
||||||
{
|
{
|
||||||
SolrServer server = getSolrServer();
|
SolrServer server = getSolrServer();
|
||||||
|
|
Loading…
Reference in New Issue