Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2024-09-11 07:35:36 +02:00
Родитель de41b51160
Коммит bfaddda421
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: CC42AC2A7F0E56D8
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -22,5 +22,5 @@ return RectorConfig::configure()
phpunit: true,
)
->withPhpSets(
php70: true,
php71: true,
);

Просмотреть файл

@ -172,7 +172,7 @@ class RecipientMapperTest extends TestCase {
$penny->setEmail('penny@stardewvalleylibrary.edu');
$penny->setLabel('Penny');
$penny->setType(Recipient::TYPE_TO);
$this->mapper->saveRecipients($message->getId(), [$penny], Recipient::TYPE_BCC);
$this->mapper->saveRecipients($message->getId(), [$penny]);
$results = $this->mapper->findByLocalMessageId($message->getId());
$this->assertCount(1, $results);