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

Commit

Permalink
Merge pull request zendframework/zendframework#2048 from mheleniak/ze…
Browse files Browse the repository at this point in the history
…nd_mail_fixes

[Zend\Mail] fixed buggy test case
  • Loading branch information
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Header/SubjectTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function testHeaderFolding()
$subject->setSubject($string);

$expected = wordwrap($string, 78, "\r\n ");
$test = $subject->getFieldValue();
$test = $subject->getFieldValue(Header\HeaderInterface::FORMAT_ENCODED);
$this->assertEquals($expected, $test);
}
}

0 comments on commit 56854a7

Please sign in to comment.