Skip to content

Commit

Permalink
Fixed INSPIREFetcherTest
Browse files Browse the repository at this point in the history
  • Loading branch information
calixtus authored and tobiasdiez committed Jun 27, 2021
1 parent f144058 commit 6a501e7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ void setUp() {
@Test
void searchByQueryFindsEntry() throws Exception {
BibEntry master = new BibEntry(StandardEntryType.MastersThesis)
.withCitationKey("Diez:2014ppa")
.withCitationKey("Diez:2013fdp")
.withField(StandardField.AUTHOR, "Diez, Tobias")
.withField(StandardField.TITLE, "Slice theorem for Fr\\'echet group actions and covariant symplectic field theory")
.withField(StandardField.TITLE, "Slice theorem for Fréchet group actions and covariant symplectic field theory")
.withField(StandardField.SCHOOL, "Leipzig U.")
.withField(StandardField.YEAR, "2013")
.withField(StandardField.EPRINT, "1405.2249")
.withField(StandardField.ARCHIVEPREFIX, "arXiv")
.withField(StandardField.PRIMARYCLASS, "math-ph");
List<BibEntry> fetchedEntries = fetcher.performSearch("Fr\\´echet group actions field");
List<BibEntry> fetchedEntries = fetcher.performSearch("Fréchet group actions field");
assertEquals(Collections.singletonList(master), fetchedEntries);
}

Expand Down

0 comments on commit 6a501e7

Please sign in to comment.