From ea8d019525cdf3fcba4d9f5735ebe38e900e5613 Mon Sep 17 00:00:00 2001 From: Matthias Richter Date: Tue, 10 Dec 2024 22:02:28 +0100 Subject: [PATCH] Adjust test --- Tests/Unit/Processing/BibEntryProcessorTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/Unit/Processing/BibEntryProcessorTest.php b/Tests/Unit/Processing/BibEntryProcessorTest.php index 08f7437..68b2fff 100644 --- a/Tests/Unit/Processing/BibEntryProcessorTest.php +++ b/Tests/Unit/Processing/BibEntryProcessorTest.php @@ -249,7 +249,7 @@ public function bookSectionFooterIsProcessedCorrectly(): void { $bookSection = $this->subject->process($this->exampleBookSectionArray, new Collection(), new Collection()); $expected = Str::of( - 'In ' . $this->bookTitle . ', ' . + 'in: ' . $this->bookTitle . ', ' . 'hg. von ' . $this->editorFirstName . ' ' . $this->editorLastName . ', ' . 'übers. von ' . $this->translatorFirstName . ' ' . $this->translatorLastName . ', ' . $this->numberOfVolumes . 'Bde., ' . @@ -269,7 +269,7 @@ public function articleFooterIsProcessedCorrectly(): void { $article = $this->subject->process($this->exampleArticleArray, new Collection(), new Collection()); $expected = Str::of( - $this->bookTitle . ' ' . + 'in: ' . $this->bookTitle . ' ' . $this->volume . ' (' . $this->date . '), Nr. ' . $this->issue . ', ' .