SOLR-7164: Fix failing TestSolr4Spatial by closing SolrCore

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1662368 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shalin Shekhar Mangar 2015-02-26 06:59:28 +00:00
parent 936aa1dcfc
commit 7cf4eedf59
1 changed files with 8 additions and 5 deletions

View File

@ -30,6 +30,7 @@ import com.spatial4j.core.shape.Rectangle;
import org.apache.lucene.spatial.bbox.BBoxStrategy;
import org.apache.solr.SolrTestCaseJ4;
import org.apache.solr.common.SolrException;
import org.apache.solr.core.SolrCore;
import org.apache.solr.schema.BBoxField;
import org.apache.solr.schema.IndexSchema;
import org.apache.solr.schema.SchemaField;
@ -374,12 +375,14 @@ public class TestSolr4Spatial extends SolrTestCaseJ4 {
@Test
public void testSpatialConfig() throws Exception {
IndexSchema schema = h.getCoreInc().getLatestSchema();
try (SolrCore core = h.getCoreInc()) {
IndexSchema schema = core.getLatestSchema();
// BBox Config
// Make sure the subfields are not stored
SchemaField sub = schema.getField("bbox"+BBoxStrategy.SUFFIX_MINX);
assertFalse(sub.stored());
// BBox Config
// Make sure the subfields are not stored
SchemaField sub = schema.getField("bbox"+BBoxStrategy.SUFFIX_MINX);
assertFalse(sub.stored());
}
}
}