Fix typos in migration levels related strings

[MAILPOET-5416]
This commit is contained in:
Rostislav Wolny
2023-07-26 10:21:19 +02:00
committed by Aschepikov
parent acd5846f70
commit 33e7e2d5f1
3 changed files with 3 additions and 3 deletions

View File

@ -55,7 +55,7 @@ class RepositoryTest extends MailPoetUnitTest {
]);
$this->expectException(MigratorException::class);
$this->expectExceptionMessage(sprintf('Migration level "%s" is not supported! Use "app" of "db".', 'abc'));
$this->expectExceptionMessage(sprintf('Migration level "%s" is not supported! Use "app" or "db".', 'abc'));
$repository->create('abc');
}