diff options
author | jenkins-bot <jenkins-bot@gerrit.wikimedia.org> | 2024-10-16 00:54:33 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@wikimedia.org> | 2024-10-16 00:54:33 +0000 |
commit | 5579e0647c21c6708e41a29b4418195c27da0ce0 (patch) | |
tree | 39a130fa483d8bc312b86740a19ca2a53131fd2f /tests/phpunit/includes/page | |
parent | 5c5d0882efabcb68cd246322f67a68c490cef0b9 (diff) | |
parent | 3bc172d0e4e8048a415b6992af3b6db84929cc02 (diff) | |
download | mediawikicore-5579e0647c21c6708e41a29b4418195c27da0ce0.tar.gz mediawikicore-5579e0647c21c6708e41a29b4418195c27da0ce0.zip |
Merge "[JsonCodec] Use wikimedia/json-codec to implement JsonCodec"
Diffstat (limited to 'tests/phpunit/includes/page')
-rw-r--r-- | tests/phpunit/includes/page/ParserOutputAccessTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/phpunit/includes/page/ParserOutputAccessTest.php b/tests/phpunit/includes/page/ParserOutputAccessTest.php index 35915ad905c5..d43f8f34ffff 100644 --- a/tests/phpunit/includes/page/ParserOutputAccessTest.php +++ b/tests/phpunit/includes/page/ParserOutputAccessTest.php @@ -104,7 +104,7 @@ class ParserOutputAccessTest extends MediaWikiIntegrationTestCase { $bag ?: new HashBagOStuff(), '19900220000000', $this->getServiceContainer()->getHookContainer(), - new JsonCodec(), + new JsonCodec( $this->getServiceContainer() ), StatsFactory::newNull(), new NullLogger(), $this->getServiceContainer()->getTitleFactory(), @@ -122,7 +122,7 @@ class ParserOutputAccessTest extends MediaWikiIntegrationTestCase { $wanCache, $expiry, '19900220000000', - new JsonCodec(), + new JsonCodec( $this->getServiceContainer() ), StatsFactory::newNull(), new NullLogger(), $this->getServiceContainer()->getGlobalIdGenerator() |