diff options
author | uckelman <uckelman@nomic.net> | 2010-04-11 13:34:09 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-04-11 13:34:09 +0000 |
commit | 6cd33bc7a7d386db295db288e70b78b5f27d6933 (patch) | |
tree | 49640d0bb9ad3e454563a8e91eb11e449163d3e2 /test | |
parent | 33a97aa2acceadc777140579fa0c32bcbcdd7781 (diff) |
Fixed text.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6642 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'test')
-rw-r--r-- | test/BridgeTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/BridgeTest.php b/test/BridgeTest.php index b646683..0a7a332 100644 --- a/test/BridgeTest.php +++ b/test/BridgeTest.php @@ -108,20 +108,20 @@ class BridgeTest extends PHPUnit_Framework_TestCase { public function providerRegisterMessage() { return array( - array('bogus', null, null, null, null, 'PDOException'), + array(null, null, null, null, null, 'PDOException'), array( '<20100302094228.33F0310091@charybdis.ellipsis.cx>', null, null, - null, - 'PDOException' + false, + null ), array( '<10100302094228.33F0310091@charybdis.ellipsis.cx>', null, null, true, - null, + null ) ); } |