diff options
-rw-r--r-- | test/PhpBB3Test.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/PhpBB3Test.php b/test/PhpBB3Test.php index 1ff9b88..c3f7bae 100644 --- a/test/PhpBB3Test.php +++ b/test/PhpBB3Test.php @@ -93,8 +93,6 @@ 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(0, false, null), array(2, true, null) ); @@ -112,8 +110,6 @@ EOF; public function providerTopicExists() { return array( array('bogus', null, 'PHPUnit_Framework_Error'), - array(3.5, null, 'PHPUnit_Framework_Error'), - array(-1, null, 'PHPUnit_Framework_Error'), array(0, false, null), array(1, true, null) ); |