Replace expect()->null() with verify()->null()
codeception/verify 2.1 removed support for expect()->null() so we need to replace it with verify()->null(). [MAILPOET-5664]
This commit is contained in:
committed by
David Remer
parent
997f635d4a
commit
709be1d541
@@ -130,7 +130,7 @@ class SegmentsTest extends \MailPoetTest {
|
||||
verify($response->data)->equals(
|
||||
$this->responseBuilder->build($segment)
|
||||
);
|
||||
expect($response->data['deleted_at'])->null();
|
||||
verify($response->data['deleted_at'])->null();
|
||||
verify($response->meta['count'])->equals(1);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user