diff options
author | Reedy <reedy@wikimedia.org> | 2024-02-16 18:04:47 +0000 |
---|---|---|
committer | Jforrester <jforrester@wikimedia.org> | 2024-02-16 22:43:56 +0000 |
commit | 85396a9c99230d706cbbe21466770856b1fbe922 (patch) | |
tree | 3c71838f4b417f7eca33855dfa99ca4a0ebafa4d /tests/phpunit/includes/content/JsonContentHandlerIntegrationTest.php | |
parent | 0c60b7f43520dced14c49a72ff28fd0ac5f0399a (diff) | |
download | mediawikicore-85396a9c99230d706cbbe21466770856b1fbe922.tar.gz mediawikicore-85396a9c99230d706cbbe21466770856b1fbe922.zip |
tests: Fix @covers and @coversDefaultClass to have leading \
Change-Id: I5629f91387f2ac453ee4341bfe4bba310bd52f03
Diffstat (limited to 'tests/phpunit/includes/content/JsonContentHandlerIntegrationTest.php')
-rw-r--r-- | tests/phpunit/includes/content/JsonContentHandlerIntegrationTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/phpunit/includes/content/JsonContentHandlerIntegrationTest.php b/tests/phpunit/includes/content/JsonContentHandlerIntegrationTest.php index 9b91214e1721..64aff22243b2 100644 --- a/tests/phpunit/includes/content/JsonContentHandlerIntegrationTest.php +++ b/tests/phpunit/includes/content/JsonContentHandlerIntegrationTest.php @@ -58,7 +58,7 @@ class JsonContentHandlerIntegrationTest extends MediaWikiLangTestCase { /** * @dataProvider provideDataAndParserText - * @covers JsonContentHandler::fillParserOutput + * @covers \JsonContentHandler::fillParserOutput */ public function testFillParserOutput( $data, $expected ) { if ( !is_string( $data ) ) { @@ -79,7 +79,7 @@ class JsonContentHandlerIntegrationTest extends MediaWikiLangTestCase { } /** - * @covers JsonContentHandler::validateSave + * @covers \JsonContentHandler::validateSave */ public function testValidateSave() { $handler = new JsonContentHandler(); |