diff options
author | uckelman <uckelman@nomic.net> | 2010-04-11 20:07:45 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-04-11 20:07:45 +0000 |
commit | a4d841f15b9119826007555beedd3d97477ec8a6 (patch) | |
tree | 6de7d6de90e1cfec6cd4493b4f3468aeeeb76f1e | |
parent | 634b25edf5fbb28bc30758cf6ab683615cfcb179 (diff) |
Fixed test cases.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6678 67b53d14-2c14-4ace-a08f-0dab2b34000c
-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), ); } |