From 82a149fedf11c76fe38469dc9dd2eca2b31a5db7 Mon Sep 17 00:00:00 2001 From: uckelman Date: Sun, 11 Apr 2010 19:06:13 +0000 Subject: s/PHPUnit_Framework_Error/Exception/g git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6670 67b53d14-2c14-4ace-a08f-0dab2b34000c --- test/PhpBB3Test.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'test/PhpBB3Test.php') diff --git a/test/PhpBB3Test.php b/test/PhpBB3Test.php index c3f7bae..a5bd7ba 100644 --- a/test/PhpBB3Test.php +++ b/test/PhpBB3Test.php @@ -44,7 +44,7 @@ EOF; public function providerGetUserId() { return array( - array('bogus', null, 'PHPUnit_Framework_Error'), + array('bogus', null, 'Exception'), array('uckelman@nomic.net', 2, null) ); } @@ -60,7 +60,7 @@ EOF; public function providerGetUserName() { return array( - array(0, null, 'PHPUnit_Framework_Error'), + array(0, null, 'Exception'), array(2, 'admin', null ) ); } @@ -76,7 +76,7 @@ EOF; public function providerGetTopicAndForumIds() { return array( - array('bogus', null, 'PHPUnit_Framework_Error'), + array('bogus', null, 'Exception'), array(2, array('topic_id' => 2, 'forum_id' => 2), null) ); } @@ -92,7 +92,7 @@ EOF; public function providerForumExists() { return array( - array('bogus', null, 'PHPUnit_Framework_Error'), + array('bogus', null, 'Exception'), array(0, false, null), array(2, true, null) ); @@ -109,7 +109,7 @@ EOF; public function providerTopicExists() { return array( - array('bogus', null, 'PHPUnit_Framework_Error'), + array('bogus', null, 'Exception'), array(0, false, null), array(1, true, null) ); -- cgit v1.2.3