diff options
Diffstat (limited to 'tests/parser/ParserTest.php')
-rw-r--r-- | tests/parser/ParserTest.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/parser/ParserTest.php b/tests/parser/ParserTest.php index dc3475b..954222a 100644 --- a/tests/parser/ParserTest.php +++ b/tests/parser/ParserTest.php @@ -49,10 +49,12 @@ class ParserTest extends TestCase $parser->error('error #1', new Token('foo'), 1); $parser->error('error #2', new Token('bar'), 2); - $this->assertEquals($parser->errors, array( + $this->assertEquals( + $parser->errors, array( new ParserException('error #1', new Token('foo'), 1), new ParserException('error #2', new Token('bar'), 2), - )); + ) + ); } /** |