Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Siedlerchr committed Aug 27, 2023
1 parent 8f0371c commit 503c0df
Showing 1 changed file with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,16 @@ public static Stream<Arguments> performSearchByIdReturnsCorrectEntryForIdentifie
Arguments.arguments(
"performSearchByIdReturnsCorrectEntryForIsbnId",
new BibEntry(StandardEntryType.Book)
.withField(StandardField.TITLE, "Effective Java")
.withField(StandardField.PUBLISHER, "Addison-Wesley Professional")
.withField(StandardField.YEAR, "2017")
.withField(StandardField.AUTHOR, "Bloch, Joshua")
.withField(StandardField.PAGES, "416")
.withField(StandardField.ISBN, "9780134685991"),
.withField(StandardField.TITLE, "Effective Java")
.withField(StandardField.PUBLISHER, "Addison-Wesley")
.withField(StandardField.YEAR, "2018")
.withField(StandardField.ISBN, "9780134685991")
.withField(StandardField.NOTE, "Titelzusätze auf dem Umschlag: \"Updated for Java 9. Best practices for ... the Java platform\"")
.withField(StandardField.PAGETOTAL, "392")
.withField(new UnknownField("ppn_gvk"), "100121840X")
.withField(StandardField.EDITION, "Third edition")
.withField(StandardField.ADDRESS, "Boston"),
"9780134685991"
),
Arguments.arguments(
Expand Down

0 comments on commit 503c0df

Please sign in to comment.