From 2a3b4a8e3bbde173ed5f0c6928831706b062076b Mon Sep 17 00:00:00 2001 From: rakekniven Date: Wed, 17 Oct 2018 10:57:29 +0200 Subject: [PATCH] Update NotifierTest.php Fixed tests --- tests/unit/Notification/NotifierTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/Notification/NotifierTest.php b/tests/unit/Notification/NotifierTest.php index c61399594..cb128acb5 100644 --- a/tests/unit/Notification/NotifierTest.php +++ b/tests/unit/Notification/NotifierTest.php @@ -149,13 +149,13 @@ class NotifierTest extends \Test\TestCase { $this->cardMapper->expects($this->once()) ->method('findBoardId') ->willReturn(999); - $expectedMessage = 'admin has mentioned in a comment on "Card title".'; + $expectedMessage = 'admin has mentioned you in a comment on "Card title".'; $notification->expects($this->once()) ->method('setParsedSubject') ->with($expectedMessage); $notification->expects($this->once()) ->method('setRichSubject') - ->with('{user} has mentioned in a comment on "Card title".'); + ->with('{user} has mentioned you in a comment on "Card title".'); $this->url->expects($this->once())