diff options
Diffstat (limited to 'tests/Utils/FormatterTest.php')
-rw-r--r-- | tests/Utils/FormatterTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Utils/FormatterTest.php b/tests/Utils/FormatterTest.php index aa84564..3551dc6 100644 --- a/tests/Utils/FormatterTest.php +++ b/tests/Utils/FormatterTest.php @@ -18,7 +18,7 @@ class FormatterTest extends TestCase { $formatter = $this->getMockBuilder('PhpMyAdmin\SqlParser\Utils\Formatter') ->disableOriginalConstructor() - ->setMethods(['getDefaultOptions', 'getDefaultFormats']) + ->setMethods(array('getDefaultOptions', 'getDefaultFormats')) ->getMock(); $formatter->expects($this->once()) @@ -57,7 +57,7 @@ class FormatterTest extends TestCase public function mergeFormats() { - // array($default[), $overriding[), $expected[]) + // array($default[], $overriding[], $expected[]) return array( 'empty formats' => array( 'default' => array( |