Skip to content

Commit 1b4d67d

Browse files
committed
minor symfony#57260 [Mime] fix test (xabbuh)
This PR was merged into the 7.2 branch. Discussion ---------- [Mime] fix test | Q | A | ------------- | --- | Branch? | 7.2 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | | License | MIT Commits ------- 2f74ec6 fix test
2 parents d7d304b + 2f74ec6 commit 1b4d67d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Mime/Tests/Part/TextPartTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public function testCustomEncoderNeedsToRegisterFirst()
101101
public function testOverwriteDefaultEncoder()
102102
{
103103
$this->expectException(InvalidArgumentException::class);
104-
$this->expectExceptionMessage('You are not allowed to change the default encoders ("quoted-printable","base64","8bit"). If you want to modify their behaviour please register and use a new encoder.');
104+
$this->expectExceptionMessage('You are not allowed to change the default encoders ("quoted-printable", "base64", and "8bit").');
105105
TextPart::addEncoder('8bit', $this->createMock(ContentEncoderInterface::class));
106106
}
107107

0 commit comments

Comments
 (0)