Skip to content

Commit

Permalink
Moved PHP_EOL to a new line.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Kaczocha committed Oct 1, 2014
1 parent 256e375 commit 489efdd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/unit/lib/formatters/ErrorLogFormatterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ public function testFormatValidSettings( )

$record->setDate( $date );

$expected = '[Wed Oct 01 23:14:55 EST] [ERROR] [-] This is the error message' . PHP_EOL;
$expected = '[Wed Oct 01 23:14:55 EST] [ERROR] [-] This is the error message';
$expected .= PHP_EOL;

$this->assertEquals( $expected, $this->formatter->format( $record ) );
}
Expand Down

0 comments on commit 489efdd

Please sign in to comment.