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

Commit f800c7f

Browse files
committed
Fixes indentation within test case
1 parent 45ce8d9 commit f800c7f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/MessageTest.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -208,13 +208,13 @@ public function testFromStringWithCrlfAndRfc2822FoldedHeaders()
208208
// e.g. cyrus or dovecot
209209
$eol = "\r\n";
210210
$fixture = 'This is a MIME-encapsulated message' . $eol . $eol
211-
. '--=_af4357ef34b786aae1491b0a2d14399f' . $eol
212-
. 'Content-Type: text/plain' . $eol
213-
. 'Content-Disposition: attachment;' . $eol
214-
. "\t" . 'filename="test.txt"' . $eol // Valid folding
215-
. $eol
216-
. 'This is a test' . $eol
217-
. '--=_af4357ef34b786aae1491b0a2d14399f--';
211+
. '--=_af4357ef34b786aae1491b0a2d14399f' . $eol
212+
. 'Content-Type: text/plain' . $eol
213+
. 'Content-Disposition: attachment;' . $eol
214+
. "\t" . 'filename="test.txt"' . $eol // Valid folding
215+
. $eol
216+
. 'This is a test' . $eol
217+
. '--=_af4357ef34b786aae1491b0a2d14399f--';
218218

219219
$message = Message::createFromMessage($fixture, '=_af4357ef34b786aae1491b0a2d14399f', $eol);
220220
$parts = $message->getParts();

0 commit comments

Comments
 (0)