In tests, remove references to wgInputEncoding and wgOutputEncoding
authorAntoine Musso <hashar@users.mediawiki.org>
Sun, 15 May 2011 12:09:59 +0000 (12:09 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Sun, 15 May 2011 12:09:59 +0000 (12:09 +0000)
Those globals are no more used as of r87589

tests/phpunit/includes/RevisionTest.php

index 20784a0..e706b9f 100644 (file)
@@ -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;