From d65598e8fa7b282543e89b880dd171913446d2e2 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Tue, 2 Apr 2024 07:19:31 +0200 Subject: [PATCH] [TASK] Use unique and more realistic test data in the unit tests (#1206) Fixes #1204 --- Tests/Unit/Domain/Model/TeaTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/Unit/Domain/Model/TeaTest.php b/Tests/Unit/Domain/Model/TeaTest.php index bb5981f..6d8c5bc 100644 --- a/Tests/Unit/Domain/Model/TeaTest.php +++ b/Tests/Unit/Domain/Model/TeaTest.php @@ -44,7 +44,7 @@ final class TeaTest extends UnitTestCase */ public function setTitleSetsTitle(): void { - $value = 'Club-Mate'; + $value = 'Earl Grey'; $this->subject->setTitle($value); self::assertSame($value, $this->subject->getTitle()); @@ -63,7 +63,7 @@ final class TeaTest extends UnitTestCase */ public function setDescriptionSetsDescription(): void { - $value = 'Club-Mate'; + $value = 'Very refreshing and amoratic.'; $this->subject->setDescription($value); self::assertSame($value, $this->subject->getDescription());