From fcb310df32afc9e9856c41bc5ef2047822b56e33 Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Sun, 15 May 2011 12:09:59 +0000 Subject: [PATCH] In tests, remove references to wgInputEncoding and wgOutputEncoding Those globals are no more used as of r87589 --- tests/phpunit/includes/RevisionTest.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/phpunit/includes/RevisionTest.php b/tests/phpunit/includes/RevisionTest.php index 20784a0973..e706b9fea1 100644 --- a/tests/phpunit/includes/RevisionTest.php +++ b/tests/phpunit/includes/RevisionTest.php @@ -9,8 +9,7 @@ class RevisionTest extends MediaWikiTestCase { $globalSet = array( 'wgLegacyEncoding' => false, 'wgCompressRevisions' => false, - 'wgInputEncoding' => 'utf-8', - 'wgOutputEncoding' => 'utf-8' ); + ); foreach ( $globalSet as $var => $data ) { $this->saveGlobals[$var] = $GLOBALS[$var]; $GLOBALS[$var] = $data; -- 2.20.1