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

Commit

Permalink
Browse files Browse the repository at this point in the history
- indentation
  • Loading branch information
weierophinney committed Aug 19, 2013
1 parent 6d9447d commit edf33e1
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions test/MimeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,27 +139,27 @@ public function testFromMessageMultiPart()
{
$message = Mime\Message::createFromMessage(
'--089e0141a1902f83ee04e0a07b7a'."\r\n"
.'Content-Type: multipart/alternative; boundary=089e0141a1902f83e904e0a07b78'."\r\n"
.'Content-Type: multipart/alternative; boundary=089e0141a1902f83e904e0a07b78'."\r\n"
."\r\n"
.'--089e0141a1902f83e904e0a07b78'."\r\n"
.'Content-Type: text/plain; charset=UTF-8'."\r\n"
.'--089e0141a1902f83e904e0a07b78'."\r\n"
.'Content-Type: text/plain; charset=UTF-8'."\r\n"
."\r\n"
.'Foo'."\r\n"
.'Foo'."\r\n"
."\r\n"
.'--089e0141a1902f83e904e0a07b78'."\r\n"
.'Content-Type: text/html; charset=UTF-8'."\r\n"
.'--089e0141a1902f83e904e0a07b78'."\r\n"
.'Content-Type: text/html; charset=UTF-8'."\r\n"
."\r\n"
.'<p>Foo</p>'."\r\n"
.'<p>Foo</p>'."\r\n"
."\r\n"
.'--089e0141a1902f83e904e0a07b78--'."\r\n"
.'--089e0141a1902f83ee04e0a07b7a'."\r\n"
.'Content-Type: image/png; name="1.png"'."\r\n"
.'Content-Disposition: attachment; filename="1.png"'."\r\n"
.'Content-Transfer-Encoding: base64'."\r\n"
.'X-Attachment-Id: barquux'."\r\n"
.'--089e0141a1902f83e904e0a07b78--'."\r\n"
.'--089e0141a1902f83ee04e0a07b7a'."\r\n"
.'Content-Type: image/png; name="1.png"'."\r\n"
.'Content-Disposition: attachment; filename="1.png"'."\r\n"
.'Content-Transfer-Encoding: base64'."\r\n"
.'X-Attachment-Id: barquux'."\r\n"
."\r\n"
.'Zm9vCg=='."\r\n"
.'--089e0141a1902f83ee04e0a07b7a--',
.'Zm9vCg=='."\r\n"
.'--089e0141a1902f83ee04e0a07b7a--',
'089e0141a1902f83ee04e0a07b7a'
);
$this->assertSame(2, count($message->getParts()));
Expand Down

0 comments on commit edf33e1

Please sign in to comment.