Skip to content

Commit

Permalink
Merge pull request #30 from railsware/fix/symfony-mailer-test
Browse files Browse the repository at this point in the history
Fix broken Unit tests after symfony/mailer update
  • Loading branch information
gaalferov authored Oct 3, 2024
2 parents d040739 + 99b906a commit 8983df5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
3 changes: 1 addition & 2 deletions tests/Bridge/Transport/MailtrapTransportFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
];
}

Expand Down

0 comments on commit 8983df5

Please sign in to comment.