summaryrefslogtreecommitdiffstats
path: root/tests/parser/ParserTest.php
diff options
context:
space:
mode:
authorDan Ungureanu <udan1107@gmail.com>2015-06-21 17:14:57 +0300
committerDan Ungureanu <udan1107@gmail.com>2015-06-22 01:13:59 +0300
commit6691a219e8a10c5c06c2fc7eed8bc0f8ff0d5207 (patch)
tree7b339ce9221748d3f10a2be6ad962e03a64cc0bc /tests/parser/ParserTest.php
parentb14a35e8ad1a1e63d4b60c4fb6d86bb801600c9e (diff)
downloadsql-parser-6691a219e8a10c5c06c2fc7eed8bc0f8ff0d5207.zip
sql-parser-6691a219e8a10c5c06c2fc7eed8bc0f8ff0d5207.tar.gz
sql-parser-6691a219e8a10c5c06c2fc7eed8bc0f8ff0d5207.tar.bz2
Fixed coding style.
Diffstat (limited to 'tests/parser/ParserTest.php')
-rw-r--r--tests/parser/ParserTest.php6
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),
- ));
+ )
+ );
}
/**