aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/includes/export/ExportTest.php
diff options
context:
space:
mode:
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>2024-02-21 17:11:00 +0000
committerGerrit Code Review <gerrit@wikimedia.org>2024-02-21 17:11:00 +0000
commita62f5c791129136c769b8d1e33ad06583f8277f4 (patch)
tree8cd1a40b9214f6d9d62198c2a2d2a80057faba7b /tests/phpunit/includes/export/ExportTest.php
parent9a9f8b67951a0737cb94912d78508067ab1e53eb (diff)
parent72c4945a724267ba65d3df08ea34bbbf1aa59aa7 (diff)
downloadmediawikicore-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.php2
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 {