This commit is contained in:
Marcus Bointon 2023-08-29 10:26:30 +02:00
parent 8db93b5190
commit e88da8d679
No known key found for this signature in database
GPG Key ID: DE31CD6EB646AA24
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ final class DSNConfiguratorTest extends TestCase
$configurator = new DSNConfigurator();
$this->expectException(Exception::class);
$this->expectExceptionMessage('Malformed DSN: "localhost".');
$this->expectExceptionMessage('Malformed DSN');
$configurator->configure($this->Mail, 'localhost');
}