From f90895676fc16a443856418265851ac7276c9723 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Tue, 25 Nov 2008 20:39:05 +0000 Subject: [PATCH] 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. --- tests/MediaWiki_TestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.20.1