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
@@ -82,7 +82,7 @@ class UserFlagsControllerTest extends \MailPoetTest {
|
||||
'userId' => $this->currentUserId,
|
||||
'name' => 'flag_1',
|
||||
]);
|
||||
expect($flag)->null();
|
||||
verify($flag)->null();
|
||||
}
|
||||
|
||||
private function createUserFlag($userId, $name, $value) {
|
||||
|
Reference in New Issue
Block a user