Skip to content

Commit e4398e6

Browse files
committed
[Mailer] Fix expected exception message to include quotes around "http(s)://"
1 parent de952d2 commit e4398e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Mailer/Bridge/MicrosoftGraph/Tests/Transport/MicrosoftGraphTransportFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public function testValidatesHttpNotProvided(string $graph, string $auth, string
8484
$dsn = new Dsn('microsoftgraph+api', $graph, self::USER, self::PASSWORD, null, ['tenantId' => self::TENANT, 'authEndpoint' => $auth]);
8585

8686
$this->expectException(InvalidArgumentException::class);
87-
$this->expectExceptionMessage($failingType.' endpoint needs to be provided without http(s)://.');
87+
$this->expectExceptionMessage($failingType.' endpoint needs to be provided without "http(s)://".');
8888
$factory->create($dsn);
8989
}
9090

0 commit comments

Comments
 (0)