Merge pull request #3200 from SirLouen/patch/3199
Improving Copy for mbstring intl test requirements
This commit is contained in:
commit
ec08e9497d
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue