SOLR-9290: MockCoreContainer should call super.shutdown()

This commit is contained in:
Shalin Shekhar Mangar 2016-07-16 00:59:35 +05:30
parent 343f374b53
commit 833c8ee152
1 changed files with 1 additions and 0 deletions

View File

@ -348,6 +348,7 @@ public class ZkControllerTest extends SolrTestCaseJ4 {
@Override @Override
public void shutdown() { public void shutdown() {
updateShardHandler.close(); updateShardHandler.close();
super.shutdown();
} }
} }