X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=tests%2Fcommon%2FTestSetup.php;h=c176a67f7f1f0109049f61edef3b5058aca0b568;hb=46cdecb05ee5574c9e1b52899fae39a9304ab616;hp=53e724bbed8d69c766a5d9d84bdf088d428921c4;hpb=22b38fbbb94e1dacb39e2611f3952707c7b5e685;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/common/TestSetup.php b/tests/common/TestSetup.php index 53e724bbed..c176a67f7f 100644 --- a/tests/common/TestSetup.php +++ b/tests/common/TestSetup.php @@ -1,7 +1,5 @@ [ 'class' => 'JobQueueMemory', 'order' => 'fifo' ], + 'default' => [ 'class' => JobQueueMemory::class, 'order' => 'fifo' ], ]; $wgUseDatabaseMessages = false; # Set for future resets @@ -49,10 +47,10 @@ class TestSetup { // Assume UTC for testing purposes $wgLocaltimezone = 'UTC'; - $wgLocalisationCacheConf['storeClass'] = 'LCStoreNull'; + $wgLocalisationCacheConf['storeClass'] = LCStoreNull::class; // Do not bother updating search tables - $wgSearchType = 'SearchEngineDummy'; + $wgSearchType = SearchEngineDummy::class; // Generic MediaWiki\Session\SessionManager configuration for tests // We use CookieSessionProvider because things might be expecting @@ -91,7 +89,7 @@ class TestSetup { ]; $wgAuth = new MediaWiki\Auth\AuthManagerAuthPlugin(); - // Bug 44192 Do not attempt to send a real e-mail + // T46192 Do not attempt to send a real e-mail Hooks::clear( 'AlternateUserMailer' ); Hooks::register( 'AlternateUserMailer',