diff options
author | C. Scott Ananian <cscott@cscott.net> | 2024-05-16 16:15:16 -0400 |
---|---|---|
committer | C. Scott Ananian <cscott@cscott.net> | 2024-06-17 13:24:39 +0000 |
commit | 105bb58ae2049ebe0fc55c5ca541c3e8b630cc77 (patch) | |
tree | 18f09f63d8d7e0594bc95db0c1a4e1dd1b6f970f /tests/phpunit/includes/jobqueue/JobTest.php | |
parent | 82760471ac5efaa86985f01fc260c9385605ac86 (diff) | |
download | mediawikicore-105bb58ae2049ebe0fc55c5ca541c3e8b630cc77.tar.gz mediawikicore-105bb58ae2049ebe0fc55c5ca541c3e8b630cc77.zip |
[ParsoidCachePrewarmJob] Use ParserOutputAccess
One more step in gradually replacing uses of ParsoidOutputAccess. This
one was pretty easy, as ParsoidOutputAccess was pretty much directly
calling ParserOutputAccess when provided with a ExistingPageRecord
and RevisionRecord.
Bug: T367074
Change-Id: I96161a64952e1809c0aec773d5a3dd4c71105657
Diffstat (limited to 'tests/phpunit/includes/jobqueue/JobTest.php')
-rw-r--r-- | tests/phpunit/includes/jobqueue/JobTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/phpunit/includes/jobqueue/JobTest.php b/tests/phpunit/includes/jobqueue/JobTest.php index 57b58798a838..da78a8754935 100644 --- a/tests/phpunit/includes/jobqueue/JobTest.php +++ b/tests/phpunit/includes/jobqueue/JobTest.php @@ -130,7 +130,7 @@ class JobTest extends MediaWikiIntegrationTestCase { [ 'class' => ParsoidCachePrewarmJob::class, 'services' => [ - 'ParsoidOutputAccess', + 'ParserOutputAccess', 'PageStore', 'RevisionLookup', 'ParsoidSiteConfig', |