aboutsummaryrefslogtreecommitdiffstats
path: root/tests/common
diff options
context:
space:
mode:
authorTimo Tijhof <krinkle@fastmail.com>2024-09-25 15:10:51 -0700
committerTimo Tijhof <krinkle@fastmail.com>2024-10-09 01:52:55 +0100
commitb18121d98c20ec76c9edc9b606f77405e19dd411 (patch)
tree501174f5a7c80753680140a5145624de32afb247 /tests/common
parent15ddf1140d3d001259590de205c5317f6051a858 (diff)
downloadmediawikicore-b18121d98c20ec76c9edc9b606f77405e19dd411.tar.gz
mediawikicore-b18121d98c20ec76c9edc9b606f77405e19dd411.zip
rdbms,objectcache: Replace wgChronologyProtectorStash with MicroStash
Bug: T336004 Change-Id: I2f769aa703ce98b15fa0fe98eda092ff19c27d0a
Diffstat (limited to 'tests/common')
-rw-r--r--tests/common/TestSetup.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/common/TestSetup.php b/tests/common/TestSetup.php
index 48a3b1ca1a18..7597c1a677db 100644
--- a/tests/common/TestSetup.php
+++ b/tests/common/TestSetup.php
@@ -38,7 +38,7 @@ class TestSetup {
global $wgScriptPath, $wgScript, $wgResourceBasePath, $wgStylePath, $wgExtensionAssetsPath;
global $wgArticlePath, $wgActionPaths, $wgVariantArticlePath, $wgUploadNavigationUrl;
global $wgMainCacheType, $wgMessageCacheType, $wgParserCacheType, $wgSessionCacheType;
- global $wgMainStash, $wgChronologyProtectorStash;
+ global $wgMainStash;
global $wgLanguageConverterCacheType, $wgUseDatabaseMessages;
global $wgLocaltimezone, $wgLocalTZoffset, $wgLocalisationCacheConf;
global $wgSearchType;
@@ -82,7 +82,6 @@ class TestSetup {
$wgLanguageConverterCacheType = 'hash';
// Uses db-replicated by default in MainConfigSchema
$wgMainStash = 'hash';
- $wgChronologyProtectorStash = 'hash';
// Use memory job queue
$wgJobTypeConf = [
'default' => [ 'class' => JobQueueMemory::class, 'order' => 'fifo' ],