Replace expect()->true() with verify()->true()
codeception/verify 2.1 removed support for expect()->true() so we need to replace it with verify()->true(). [MAILPOET-5664]
This commit is contained in:
committed by
David Remer
parent
35c24fb324
commit
9adbf81a78
@@ -616,8 +616,8 @@ class SubscribersTest extends \MailPoetTest {
|
||||
$this->subscribersRepository->findOneById($deletableSubscriber->getId()) === null
|
||||
);
|
||||
|
||||
expect($isSubscriber1Deleted)->true();
|
||||
expect($isDeletableSubscriberDeleted)->true();
|
||||
verify($isSubscriber1Deleted)->true();
|
||||
verify($isDeletableSubscriberDeleted)->true();
|
||||
}
|
||||
|
||||
public function testItCanBulkDeleteSubscribers() {
|
||||
|
Reference in New Issue
Block a user