diff options
author | James D. Forrester <jforrester@wikimedia.org> | 2024-05-04 11:58:57 +0300 |
---|---|---|
committer | C. Scott Ananian <cscott@cscott.net> | 2024-06-12 14:50:58 -0400 |
commit | 19f4e6945a7393fafddd299fcd1eb2ab42ca11f4 (patch) | |
tree | 443de13b948c44a3c82defbf43b967bb1174c27c /tests/common | |
parent | 68c63f31c0cf33ac6838a50546631b07cd76008a (diff) | |
download | mediawikicore-19f4e6945a7393fafddd299fcd1eb2ab42ca11f4.tar.gz mediawikicore-19f4e6945a7393fafddd299fcd1eb2ab42ca11f4.zip |
Rename JsonUnserial… to JsonDeserial…
This is to make it clearer that they're related to converting serialized
content back into JSON, rather than stating that things are not
representable in JSON.
Change-Id: Ic440ac2d05b5ac238a1c0e4821d3f2d858bc3d76
Diffstat (limited to 'tests/common')
-rw-r--r-- | tests/common/TestsAutoLoader.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/common/TestsAutoLoader.php b/tests/common/TestsAutoLoader.php index 47b9e831febb..6e65499d22e1 100644 --- a/tests/common/TestsAutoLoader.php +++ b/tests/common/TestsAutoLoader.php @@ -276,8 +276,8 @@ $wgAutoloadClasses += [ 'MediaWiki\\Tests\\HookContainer\\HookRunnerTestBase' => "$testDir/phpunit/unit/includes/HookContainer/HookRunnerTestBase.php", # tests/phpunit/unit/includes/json - 'MediaWiki\\Tests\\Json\\JsonUnserializableSuperClass' => "$testDir/phpunit/mocks/json/JsonUnserializableSuperClass.php", - 'MediaWiki\\Tests\\Json\\JsonUnserializableSubClass' => "$testDir/phpunit/mocks/json/JsonUnserializableSubClass.php", + 'MediaWiki\\Tests\\Json\\JsonDeserializableSuperClass' => "$testDir/phpunit/mocks/json/JsonDeserializableSuperClass.php", + 'MediaWiki\\Tests\\Json\\JsonDeserializableSubClass' => "$testDir/phpunit/mocks/json/JsonDeserializableSubClass.php", # tests/phpunit/unit/includes/language 'LanguageCodeTest' => "$testDir/phpunit/unit/includes/language/LanguageCodeTest.php", |