Skip to content

Commit

Permalink
Fixing compile error.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimwebber committed Feb 28, 2017
1 parent 03a7a84 commit 5ff7d14
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -29,7 +29,7 @@
import org.neo4j.graphdb.Label; import org.neo4j.graphdb.Label;
import org.neo4j.graphdb.index.IndexManager; import org.neo4j.graphdb.index.IndexManager;
import org.neo4j.index.lucene.unsafe.batchinsert.LuceneBatchInserterIndexProvider; import org.neo4j.index.lucene.unsafe.batchinsert.LuceneBatchInserterIndexProvider;
import org.neo4j.test.TargetDirectory; import org.neo4j.test.rule.TestDirectory;
import org.neo4j.unsafe.batchinsert.BatchInserter; import org.neo4j.unsafe.batchinsert.BatchInserter;
import org.neo4j.unsafe.batchinsert.BatchInserterIndex; import org.neo4j.unsafe.batchinsert.BatchInserterIndex;
import org.neo4j.unsafe.batchinsert.BatchInserters; import org.neo4j.unsafe.batchinsert.BatchInserters;
Expand All @@ -41,7 +41,7 @@ public class LegacyIndexTest
private static final long TEST_TIMEOUT = 40_000; private static final long TEST_TIMEOUT = 40_000;


@Rule @Rule
public TargetDirectory.TestDirectory directory = TargetDirectory.testDirForTest( getClass() ); public TestDirectory directory = TestDirectory.testDirectory();


@Test( timeout = TEST_TIMEOUT ) @Test( timeout = TEST_TIMEOUT )
public void legacyIndexPopulationWithBunchOfFields() throws Exception public void legacyIndexPopulationWithBunchOfFields() throws Exception
Expand Down

0 comments on commit 5ff7d14

Please sign in to comment.