summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/BridgeTest.php2
-rw-r--r--test/PhpBB3Test.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/BridgeTest.php b/test/BridgeTest.php
index b0b5df7..6925847 100644
--- a/test/BridgeTest.php
+++ b/test/BridgeTest.php
@@ -90,7 +90,7 @@ class BridgeTest extends PHPUnit_Framework_TestCase {
public function providerGetMessageId() {
return array(
array(null, null, 'Exception'),
- array('bogus', false, null),
+ array(0, false, null),
array(1, '<20100302094228.33F0310091@charybdis.ellipsis.cx>', null),
);
}
diff --git a/test/PhpBB3Test.php b/test/PhpBB3Test.php
index 99de765..9de93b5 100644
--- a/test/PhpBB3Test.php
+++ b/test/PhpBB3Test.php
@@ -78,7 +78,7 @@ EOF;
public function providerGetTopicAndForumIds() {
return array(
array(null, null, 'Exception'),
- array('bogus', false, null),
+ array(0, false, null),
array(2, array('topic_id' => 2, 'forum_id' => 2), null)
);
}