diff options
author | jenkins-bot <jenkins-bot@gerrit.wikimedia.org> | 2024-02-21 17:11:00 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@wikimedia.org> | 2024-02-21 17:11:00 +0000 |
commit | a62f5c791129136c769b8d1e33ad06583f8277f4 (patch) | |
tree | 8cd1a40b9214f6d9d62198c2a2d2a80057faba7b /tests/phpunit/includes/export/ExportTest.php | |
parent | 9a9f8b67951a0737cb94912d78508067ab1e53eb (diff) | |
parent | 72c4945a724267ba65d3df08ea34bbbf1aa59aa7 (diff) | |
download | mediawikicore-a62f5c791129136c769b8d1e33ad06583f8277f4.tar.gz mediawikicore-a62f5c791129136c769b8d1e33ad06583f8277f4.zip |
Merge "[ParserOutput] Rename $mText to $mRawText and ::setText() to ::setRawText()"
Diffstat (limited to 'tests/phpunit/includes/export/ExportTest.php')
-rw-r--r-- | tests/phpunit/includes/export/ExportTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/phpunit/includes/export/ExportTest.php b/tests/phpunit/includes/export/ExportTest.php index 3c4ee10312fd..720615a95471 100644 --- a/tests/phpunit/includes/export/ExportTest.php +++ b/tests/phpunit/includes/export/ExportTest.php @@ -86,7 +86,7 @@ class ExportTest extends MediaWikiLangTestCase { ContentParseParams $cpoParams, ParserOutput &$output ) { - $output->setText( json_encode( $content->getNativeData() ) ); + $output->setRawText( json_encode( $content->getNativeData() ) ); } private function getTestContent( string $blob ): Content { |