maven: invoke super.tearDown() in finally block

This commit is contained in:
Vladislav.Soroka
2017-02-14 13:56:18 +03:00
parent 7d74bf3bcc
commit 41cb76c77f
@@ -53,8 +53,12 @@ public class MavenIndicesTest extends MavenIndicesTestCase {
@Override
protected void tearDown() throws Exception {
shutdownIndices();
super.tearDown();
try {
shutdownIndices();
}
finally {
super.tearDown();
}
}
private void initIndices() throws Exception {