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

svn commit: r1023562 - /lucene/dev/trunk/solr/src/test/org/apache/solr/util/SolrPluginUtilsTest.java

Author: rmuir
Date: Sun Oct 17 19:17:56 2010
New Revision: 1023562

URL: http://svn.apache.org/viewvc?rev=1023562&view=rev
Log:
close the searcher in this test

Modified:
    lucene/dev/trunk/solr/src/test/org/apache/solr/util/SolrPluginUtilsTest.java

Modified: lucene/dev/trunk/solr/src/test/org/apache/solr/util/SolrPluginUtilsTest.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/src/test/org/apache/solr/util/SolrPluginUtilsTest.java?rev=1023562&r1=1023561&r2=1023562&view=diff
==============================================================================
--- lucene/dev/trunk/solr/src/test/org/apache/solr/util/SolrPluginUtilsTest.java (original)
+++ lucene/dev/trunk/solr/src/test/org/apache/solr/util/SolrPluginUtilsTest.java Sun Oct 17 19:17:56 2010
@@ -82,7 +82,7 @@ public class SolrPluginUtilsTest extends
     for (SolrDocument document : list) {
       assertNotNull(document.get("val_t"));
     }
-
+    srchr.close();
   }
 
   @Test