Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Wraps long line
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed May 14, 2018
1 parent 204ef79 commit b30f429
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/MimeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ public function testQuotedPrintableSpacesAndDots()
$text = str_repeat(' ', Mime\Mime::LINELENGTH) . str_repeat('.', Mime\Mime::LINELENGTH);
$qp = Mime\Mime::encodeQuotedPrintable($text);

$expected = str_repeat(' ', Mime\Mime::LINELENGTH - 1) . "=20=\n=2E" . str_repeat('.', Mime\Mime::LINELENGTH - 1);
$expected = str_repeat(' ', Mime\Mime::LINELENGTH - 1)
. "=20=\n=2E"
. str_repeat('.', Mime\Mime::LINELENGTH - 1);

$this->assertEquals($expected, $qp);
}
Expand Down

0 comments on commit b30f429

Please sign in to comment.