From 0461d2eebc19c7c3a22e2d338902324edc5c67cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20D?= Date: Sun, 10 Mar 2024 11:12:48 +0100 Subject: [PATCH] chore(tests): fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rubén D --- tests/SPT/Domain/Crypt/Services/TemporaryMasterPassTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/SPT/Domain/Crypt/Services/TemporaryMasterPassTest.php b/tests/SPT/Domain/Crypt/Services/TemporaryMasterPassTest.php index 9b7a9dea..3237a98e 100644 --- a/tests/SPT/Domain/Crypt/Services/TemporaryMasterPassTest.php +++ b/tests/SPT/Domain/Crypt/Services/TemporaryMasterPassTest.php @@ -75,7 +75,7 @@ class TemporaryMasterPassTest extends UnitaryTestCase $this->mailService ->expects(self::once()) - ->method('sendBatch') + ->method('send') ->with(self::anything(), $emails, self::anything()); $this->temporaryMasterPass->sendByEmailForAllUsers($key); @@ -127,7 +127,7 @@ class TemporaryMasterPassTest extends UnitaryTestCase $this->mailService ->expects(self::once()) - ->method('sendBatch') + ->method('send') ->with(self::anything(), $emails, self::anything()); $this->temporaryMasterPass->sendByEmailForGroup($groupId, $key);