diff options
author | uckelman <uckelman@nomic.net> | 2010-04-13 19:27:04 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-04-13 19:27:04 +0000 |
commit | 75b04e5b2d2c843b21e8ea0cb15cedfda5059a54 (patch) | |
tree | 9fa3a5c429fbfdaf16a125957b7d96854d181446 /test/BridgeTest.php | |
parent | b0b79fcd5ee50ad6c2b3f99a9a5ba77bbe7d9234 (diff) |
Use actual testing domain in test.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6694 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'test/BridgeTest.php')
-rw-r--r-- | test/BridgeTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/BridgeTest.php b/test/BridgeTest.php index d79ebd0..c0c7da1 100644 --- a/test/BridgeTest.php +++ b/test/BridgeTest.php @@ -52,7 +52,7 @@ class BridgeTest extends PHPUnit_Framework_TestCase { $this->db->exec( 'INSERT INTO forums (list_name, forum_id) ' . 'VALUES (' . - '"messages@forums.vassalengine.org", 2' . + '"messages@test.nomic.net", 2' . ')' ); } @@ -159,7 +159,7 @@ class BridgeTest extends PHPUnit_Framework_TestCase { return array( array(null, null, 'Exception'), array('bogus', false, null), - array('messages@forums.vassalengine.org', 2, null), + array('messages@test.nomic.net', 2, null), ); } @@ -176,7 +176,7 @@ class BridgeTest extends PHPUnit_Framework_TestCase { return array( array(null, null, 'Exception'), array(1, array(), null), - array(2, array('messages@forums.vassalengine.org'), null) + array(2, array('messages@test.nomic.net'), null) ); } |