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

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

Author: yonik
Date: Tue Oct 19 20:22:26 2010
New Revision: 1024395

URL: http://svn.apache.org/viewvc?rev=1024395&view=rev
Log:
tests: decref, not close

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=1024395&r1=1024394&r2=1024395&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 Tue Oct 19 20:22:26 2010
@@ -83,7 +83,7 @@ public class SolrPluginUtilsTest extends
     for (SolrDocument document : list) {
       assertNotNull(document.get("val_t"));
     }
-    holder.close();
+    holder.decref();
   }
 
   @Test