Move newDirectory() creation to before, otherwise if something happens prior to before/after rule being invoked, the directory wouldn't be closed/ cleaned up properly.

This commit is contained in:
Dawid Weiss 2020-01-02 10:48:10 +01:00
parent 4c9cc2cefd
commit b1bb7bf8c2
1 changed files with 2 additions and 1 deletions

View File

@ -39,7 +39,7 @@ public class TestLazyDocument extends LuceneTestCase {
{ "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k" };
public final int NUM_VALUES = atLeast(100);
public Directory dir = newDirectory();
public Directory dir;
@After
public void removeIndex() {
@ -53,6 +53,7 @@ public class TestLazyDocument extends LuceneTestCase {
@Before
public void createIndex() throws Exception {
dir = newDirectory();
Analyzer analyzer = new MockAnalyzer(random());
IndexWriter writer = new IndexWriter