From: Chad Horohoe Date: Tue, 25 Nov 2008 20:39:05 +0000 (+0000) Subject: As brought up in bug 16374, the parserTests seem to only want parsertest_ as the... X-Git-Tag: 1.31.0-rc.0~44204 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=f90895676fc16a443856418265851ac7276c9723;p=lhc%2Fweb%2Fwiklou.git As brought up in bug 16374, the parserTests seem to only want parsertest_ as the dbprefix. If we're going to do that, lets make the PHPUnit tests consistent and use the same test prefix. --- diff --git a/tests/MediaWiki_TestCase.php b/tests/MediaWiki_TestCase.php index 3ca1dbdf65..387fe0111f 100644 --- a/tests/MediaWiki_TestCase.php +++ b/tests/MediaWiki_TestCase.php @@ -7,7 +7,7 @@ abstract class MediaWiki_TestCase extends PHPUnit_Framework_TestCase { */ protected function buildTestDatabase( $tables ) { global $testOptions, $wgDBprefix, $wgDBserver, $wgDBadminuser, $wgDBadminpassword, $wgDBname; - $wgDBprefix = 'parsertest'; + $wgDBprefix = 'parsertest_'; $db = new Database( $wgDBserver, $wgDBadminuser,