Fix integration tests to work with updated codeception/verify

[MAILPOET-3203]
This commit is contained in:
Rostislav Wolny
2020-10-08 13:02:47 +02:00
committed by Veljko V
parent e85b4c6fec
commit 54727ad9a2
52 changed files with 266 additions and 265 deletions

View File

@@ -15,7 +15,7 @@ class MigratorTest extends \MailPoetTest {
public function testItCanGenerateTheSubscribersSql() {
$subscriberSql = $this->migrator->subscribers();
$expectedTable = $this->migrator->prefix . 'subscribers';
expect($subscriberSql)->contains($expectedTable);
expect($subscriberSql)->stringContainsString($expectedTable);
}
public function testItDoesNotMigrateWhenDatabaseIsUpToDate() {