Explorar o código

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

Fixed Zend_View_Helper_FormSelectTest::testRenderingWithOptions() for Windows
Frank Brückner %!s(int64=12) %!d(string=hai) anos
pai
achega
516af0020f
Modificáronse 1 ficheiros con 3 adicións e 3 borrados
  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);