Sfoglia il codice sorgente

Merge pull request #155 from mhujer/zend-view-tests

Fixed Zend_View_Helper_FormSelectTest::testRenderingWithOptions() for Windows
Frank Brückner 12 anni fa
parent
commit
516af0020f
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. 3 3
      tests/Zend/View/Helper/FormSelectTest.php

+ 3 - 3
tests/Zend/View/Helper/FormSelectTest.php

@@ -92,11 +92,11 @@ class Zend_View_Helper_FormSelectTest extends PHPUnit_Framework_TestCase
         );
 
         $expected = '<select name="foo" id="foo">'
-                  . PHP_EOL
+                  . "\n"
                   . '    <option value="bar">Bar</option>'
-                  . PHP_EOL
+                  . "\n"
                   . '    <option value="baz">Baz</option>'
-                  . PHP_EOL
+                  . "\n"
                   . '</select>';
 
         $this->assertSame($expected, $html);