Skip to content

Commit

Permalink
remove .pdf extension from expected arg
Browse files Browse the repository at this point in the history
  • Loading branch information
subhramit authored Sep 9, 2024
1 parent f6abb13 commit 1bae6c8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ void setUp() {
@Test
void findByDOI() throws IOException {
entry.setField(StandardField.DOI, "10.1186/s12993-024-00248-9");
assertEquals(Optional.of(new URL("https://behavioralandbrainfunctions.biomedcentral.com/counter/pdf/10.1186/s12993-024-00248-9.pdf")), finder.findFullText(entry));
assertEquals(Optional.of(new URL("https://behavioralandbrainfunctions.biomedcentral.com/counter/pdf/10.1186/s12993-024-00248-9")), finder.findFullText(entry));
}

@Test
Expand Down

0 comments on commit 1bae6c8

Please sign in to comment.