Drop strings for wgExternalDiffEngine, deprecated in 1.27 and 1.32
[lhc/web/wiklou.git] / tests / phpunit / includes / api / ApiComparePagesTest.php
index 9e18eb0..9b32e9e 100644 (file)
@@ -10,16 +10,6 @@ class ApiComparePagesTest extends ApiTestCase {
 
        protected static $repl = [];
 
-       protected function setUp() {
-               parent::setUp();
-
-               // Set $wgExternalDiffEngine to something bogus to try to force use of
-               // the PHP engine rather than wikidiff2.
-               $this->setMwGlobals( [
-                       'wgExternalDiffEngine' => '/dev/null',
-               ] );
-       }
-
        protected function addPage( $page, $text, $model = CONTENT_MODEL_WIKITEXT ) {
                $title = Title::newFromText( 'ApiComparePagesTest ' . $page );
                $content = ContentHandler::makeContent( $text, $title, $model );