Replace expect()->false() with verify()->false()
codeception/verify 2.1 removed support for expect()->false() so we need to replace it with verify()->false(). [MAILPOET-5664]
This commit is contained in:
committed by
David Remer
parent
9adbf81a78
commit
997f635d4a
@@ -353,7 +353,7 @@ class SendingQueueTest extends \MailPoetTest {
|
||||
// queue no longer exists
|
||||
$this->sendingQueueWorker->process();
|
||||
$queue = SendingQueue::findOne($this->queue->id);
|
||||
expect($queue)->false();
|
||||
verify($queue)->false();
|
||||
}
|
||||
|
||||
public function testItPassesExtraParametersToMailerWhenTrackingIsDisabled() {
|
||||
|
Reference in New Issue
Block a user