diff options
author | Joas Schilling <coding@schilljs.com> | 2024-10-04 16:13:28 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-10-07 12:11:38 +0200 |
commit | e6cd1051dac570826c969c7e7372a38b192056fa (patch) | |
tree | 74977f08a365bc746db78446fd1caf1ab3f380e7 /tests | |
parent | 4219969c96f8dcbe734b22faf1a1b92f35c16028 (diff) | |
download | nextcloud-server-e6cd1051dac570826c969c7e7372a38b192056fa.tar.gz nextcloud-server-e6cd1051dac570826c969c7e7372a38b192056fa.zip |
fix(message): Fix logic of Mail test
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Mail/MessageTest.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/lib/Mail/MessageTest.php b/tests/lib/Mail/MessageTest.php index 681ec033380..260d3aaff76 100644 --- a/tests/lib/Mail/MessageTest.php +++ b/tests/lib/Mail/MessageTest.php @@ -91,23 +91,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(); } |