aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2024-10-04 16:13:28 +0200
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2024-10-17 12:44:43 +0000
commitd518cedafd89fe8a0b42c18c00720101e0cb1e3c (patch)
tree062f48b92ecf2e011d8a5d634224e504ac3a5590
parenta028041721a4a3840dd9d063868c53a880a090cb (diff)
downloadnextcloud-server-backport/48539/stable28.tar.gz
nextcloud-server-backport/48539/stable28.zip
fix(message): Fix logic of Mail testbackport/48539/stable28
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--tests/lib/Mail/MessageTest.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/lib/Mail/MessageTest.php b/tests/lib/Mail/MessageTest.php
index 1d309ca742d..2040e933b0d 100644
--- a/tests/lib/Mail/MessageTest.php
+++ b/tests/lib/Mail/MessageTest.php
@@ -92,23 +92,23 @@ class MessageTest extends TestCase {
$this->symfonyEmail
->expects($this->once())
->method('from')
- ->willReturn(new Address('pierres-general-store@stardewvalley.com', 'Pierres General Store'));
+ ->with(new Address('pierres-general-store@stardewvalley.com', 'Pierres General Store'));
$this->symfonyEmail
->expects($this->once())
->method('to')
- ->willReturn(new Address('lewis-tent@stardewvalley.com', "Lewis' Tent Life"));
+ ->with(new Address('lewis-tent@stardewvalley.com', "Lewis' Tent Life"));
$this->symfonyEmail
->expects($this->once())
->method('replyTo')
- ->willReturn(new Address('penny@stardewvalley-library.co.edu', 'Penny'));
+ ->with(new Address('penny@stardewvalley-library.co.edu', 'Penny'));
$this->symfonyEmail
->expects($this->once())
->method('cc')
- ->willReturn(new Address('gunther@stardewvalley-library.co.edu', 'Gunther'));
+ ->with(new Address('gunther@stardewvalley-library.co.edu', 'Gunther'));
$this->symfonyEmail
->expects($this->once())
->method('bcc')
- ->willReturn(new Address('pam@stardewvalley-bus.com', 'Pam'));
+ ->with(new Address('pam@stardewvalley-bus.com', 'Pam'));
$this->message->setRecipients();
}