Merge pull request #3200 from SirLouen/patch/3199

Improving Copy for mbstring intl test requirements
This commit is contained in:
Marcus Bointon 2025-09-24 18:49:05 +01:00 committed by GitHub
commit ec08e9497d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -1121,7 +1121,7 @@ EOT;
public function testConvertEncoding() public function testConvertEncoding()
{ {
if (!PHPMailer::idnSupported()) { if (!PHPMailer::idnSupported()) {
self::markTestSkipped('intl and/or mbstring extensions are not available'); self::markTestSkipped('Both intl and mbstring extensions are required.');
} }
$this->Mail->clearAllRecipients(); $this->Mail->clearAllRecipients();
@ -1166,7 +1166,7 @@ EOT;
public function testDuplicateIDNRemoved() public function testDuplicateIDNRemoved()
{ {
if (!PHPMailer::idnSupported()) { if (!PHPMailer::idnSupported()) {
self::markTestSkipped('intl and/or mbstring extensions are not available'); self::markTestSkipped('Both intl and mbstring extensions are required.');
} }
$this->Mail->clearAllRecipients(); $this->Mail->clearAllRecipients();
@ -1243,7 +1243,7 @@ EOT;
//Beyond this point we need UTF-8 support //Beyond this point we need UTF-8 support
if (!PHPMailer::idnSupported()) { if (!PHPMailer::idnSupported()) {
self::markTestSkipped('intl and/or mbstring extensions are not available'); self::markTestSkipped('Both intl and mbstring extensions are required.');
} }
//Using a punycodable domain does not need SMTPUTF8 //Using a punycodable domain does not need SMTPUTF8