diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/PhpBB3Test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/PhpBB3Test.php b/test/PhpBB3Test.php index b75929f..64cd1c6 100644 --- a/test/PhpBB3Test.php +++ b/test/PhpBB3Test.php @@ -93,8 +93,8 @@ EOF; public function providerForumExists() { return array( array('bogus', null, 'PHPUnit_Framework_Error'), - array(3.5, null 'PHPUnit_Framework_Error'), - array(-1, null 'PHPUnit_Framework_Error'), + array(3.5, null, 'PHPUnit_Framework_Error'), + array(-1, null, 'PHPUnit_Framework_Error'), array(1, false, null), array(2, true, null) ); |