Browse Source

ZF-10236: Fix test expectations

- Backported r23999 from 1.11 release branch; corrects expectations

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@24000 44c647ce-9c0f-0410-b52a-842ac1e357ba
matthew 14 years ago
parent
commit
a76bedf6e4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/Zend/Mail/MessageTest.php

+ 1 - 1
tests/Zend/Mail/MessageTest.php

@@ -217,7 +217,7 @@ class Zend_Mail_MessageTest extends PHPUnit_Framework_TestCase
 
     public function testDecodeString()
     {
-        $string = '"Peter Müller" <peter-mueller@example.com>';
+        $string = '"Peter M=C3=BCller" <peter-mueller@example.com>';
         $is     = Zend_Mime_Decode::decodeQuotedPrintable($string);
         $should = quoted_printable_decode($string);
         $this->assertEquals($is, $should);