fixed setup to call super

This commit is contained in:
Jeremy Long
2016-06-05 08:04:45 -04:00
parent 06b59cf79b
commit f43589589d

View File

@@ -65,7 +65,7 @@ public class RubyBundleAuditAnalyzerTest extends BaseDBTestCase {
*/ */
@Before @Before
public void setUp() throws Exception { public void setUp() throws Exception {
Settings.initialize(); super.setUp();
analyzer = new RubyBundleAuditAnalyzer(); analyzer = new RubyBundleAuditAnalyzer();
analyzer.setFilesMatched(true); analyzer.setFilesMatched(true);
} }
@@ -77,7 +77,6 @@ public class RubyBundleAuditAnalyzerTest extends BaseDBTestCase {
*/ */
@After @After
public void tearDown() throws Exception { public void tearDown() throws Exception {
Settings.cleanup();
analyzer.close(); analyzer.close();
analyzer = null; analyzer = null;
} }