git-svn-id: http://framework.zend.com/svn/framework/standard/branches/release-1.12@25019 44c647ce-9c0f-0410-b52a-842ac1e357ba
@@ -146,7 +146,11 @@ abstract class Zend_View_Helper_Navigation_TestAbstract
*/
protected function _getExpected($file)
{
- return file_get_contents($this->_files . '/expected/' . $file);
+ return str_replace(
+ "\n",
+ PHP_EOL,
+ file_get_contents($this->_files . '/expected/' . $file)
+ );
}
/**