Skip to content

Commit

Permalink
missing new line after xml declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
Amjad Mohamed committed Oct 31, 2011
1 parent 997ab8f commit 259476a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PHPSpec/Runner/Formatter/Junit.php
Expand Up @@ -62,7 +62,7 @@ public function __construct (Reporter $reporter)
*/
public function output ()
{
$output = '<xml version="1.0">';
$output = '<xml version="1.0">' . PHP_EOL;
$output .= '<testsuites>' . PHP_EOL . $this->_result;
$output .= '</testsuites>' . PHP_EOL;
echo $output;
Expand Down

0 comments on commit 259476a

Please sign in to comment.