Replace expect()->count() with verify()->arrayCount()

codeception/verify 2.1 removed support for expect()->count() so we need
to replace it with verify()->arrayCount().

[MAILPOET-5664]
This commit is contained in:
Rodrigo Primo
2023-10-18 16:24:00 -03:00
committed by David Remer
parent e4136fee8c
commit 9b56fdc688
92 changed files with 376 additions and 376 deletions

View File

@ -516,7 +516,7 @@ class SubscribersTest extends \MailPoetTest {
]);
verify($response->meta['count'])->equals(2);
expect($response->data)->count(1);
verify($response->data)->arrayCount(1);
verify($response->data[0]['email'])->equals(
$this->subscriber2->getEmail()
);
@ -530,7 +530,7 @@ class SubscribersTest extends \MailPoetTest {
]);
verify($response->meta['count'])->equals(2);
expect($response->data)->count(1);
verify($response->data)->arrayCount(1);
verify($response->data[0]['email'])->equals(
$this->subscriber1->getEmail()
);
@ -922,7 +922,7 @@ class SubscribersTest extends \MailPoetTest {
];
$this->endpoint->save($subscriberData);
expect($this->sendingQueuesRepository->findAll())->count(1);
verify($this->sendingQueuesRepository->findAll())->arrayCount(1);
}
public function testItSchedulesWelcomeEmailNotificationWhenExistedSubscriberIsUpdated() {
@ -942,7 +942,7 @@ class SubscribersTest extends \MailPoetTest {
$subscriberData['segments'] = [$this->segment1->getId()];
$this->endpoint->save($subscriberData);
expect($this->sendingQueuesRepository->findAll())->count(1);
verify($this->sendingQueuesRepository->findAll())->arrayCount(1);
}
public function testItDoesNotSchedulesWelcomeEmailNotificationWhenNoNewSegmentIsAdded() {
@ -967,7 +967,7 @@ class SubscribersTest extends \MailPoetTest {
];
$this->endpoint->save($subscriberData);
expect($this->sendingQueuesRepository->findAll())->count(0);
verify($this->sendingQueuesRepository->findAll())->arrayCount(0);
}
public function testItSendsConfirmationEmail() {