From 7f478c999975321a30237a48384bb8abed055f3a Mon Sep 17 00:00:00 2001 From: Mark Robert Miller Date: Sun, 17 Nov 2013 01:00:16 +0000 Subject: [PATCH] tests: null out a couple statics git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1542625 13f79535-47bb-0310-9956-ffa450edef68 --- .../solr/handler/component/DistributedDebugComponentTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/solr/core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java b/solr/core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java index 06df11be9a0..62cdfd41249 100644 --- a/solr/core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java +++ b/solr/core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java @@ -72,6 +72,8 @@ public class DistributedDebugComponentTest extends SolrJettyTestBase { public static void afterTest() throws Exception { collection1.shutdown(); collection2.shutdown(); + collection1 = null; + collection2 = null; jetty.stop(); jetty=null; cleanUpJettyHome(solrHome);