Skip to content

Commit

Permalink
More test feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Synchro committed Feb 14, 2017
1 parent 8e8da27 commit 16a060b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/phpmailerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1327,7 +1327,10 @@ public function testLongBody()
$this->Mail->Encoding = '8bit';
$this->Mail->preSend();
$message = $this->Mail->getSentMIMEMessage();
$this->assertFalse(PHPMailer::hasLineLongerThanMax($message), 'Long line not corrected.');
$this->assertFalse(
PHPMailer::hasLineLongerThanMax($message),
'Long line not corrected (Max: '.(PHPMailer::MAX_LINE_LENGTH + strlen(PHPMailer::getLE())). ' chars).'
);
$this->assertContains(
'Content-Transfer-Encoding: quoted-printable',
$message,
Expand Down

0 comments on commit 16a060b

Please sign in to comment.