diff --git a/CHANGELOG.md b/CHANGELOG.md index b1e3e3a..354ada3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [2.0.2] - 2024-10-04 + +- Remove an expected message from the `testUnsupportedSchemeException` method ([reason](https://github.com/symfony/mailer/commit/a098a3fe7f42a30235b862162090900cbf787ff6)) + + ## [2.0.1] - 2024-08-16 - Support mixed types in template_variables (array, string, int, float, bool) diff --git a/tests/Bridge/Transport/MailtrapTransportFactoryTest.php b/tests/Bridge/Transport/MailtrapTransportFactoryTest.php index 65f41bd..2820448 100644 --- a/tests/Bridge/Transport/MailtrapTransportFactoryTest.php +++ b/tests/Bridge/Transport/MailtrapTransportFactoryTest.php @@ -131,8 +131,7 @@ public function createProvider(): iterable public function unsupportedSchemeProvider(): iterable { yield [ - new Dsn('mailtrap+foo', 'mailtrap', self::USER), - 'The "mailtrap+foo" scheme is not supported; supported schemes for mailer "mailtrap" are: "mailtrap", "mailtrap+api".', + new Dsn('mailtrap+foo', 'mailtrap', self::USER) ]; }