diff options
Diffstat (limited to 'test/BridgeTest.php')
-rw-r--r-- | test/BridgeTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/BridgeTest.php b/test/BridgeTest.php index 7a3c265..7912327 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, 'Exception'), + array('bogus', false, null), array(1, '<20100302094228.33F0310091@charybdis.ellipsis.cx>', null), ); } @@ -140,7 +140,7 @@ class BridgeTest extends PHPUnit_Framework_TestCase { public function providerGetDefaultForumId() { return array( array(null, null, 'Exception'), - array('bogus', false, 'Exception'), + array('bogus', false, null), array('messages@forums.vassalengine.org', 2, null), ); } |