Skip to content

Commit 3fa71f4

Browse files
committed
Fix test
1 parent 81a30ff commit 3fa71f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/jabref/logic/search/indexing/LinkedFilesIndexerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ void setUp(@TempDir Path indexDir) throws IOException {
4242
when(context.getFileDirectories(Mockito.any())).thenReturn(Collections.singletonList(Path.of("src/test/resources/pdfs")));
4343
when(context.getFulltextIndexPath()).thenReturn(indexDir);
4444

45-
this.indexer = new DefaultLinkedFilesIndexer(context, filePreferences);
45+
this.indexer = new DefaultLinkedFilesIndexer(context, filePreferences, true);
4646
}
4747

4848
@Test

0 commit comments

Comments
 (0)