diff options
author | Umherirrender <umherirrender_de.wp@web.de> | 2024-10-21 18:05:31 +0200 |
---|---|---|
committer | Umherirrender <umherirrender_de.wp@web.de> | 2024-10-21 18:53:02 +0200 |
commit | 839613ff7762bbda3da0ab9f0fe3d84d65d96280 (patch) | |
tree | 023b3b907873519662beb72ca3f8ad90e28137c7 /tests/phpunit/includes/content/FallbackContentHandlerTest.php | |
parent | 1a318c94996be1a826d5ae5cadf8280c0b45b43b (diff) | |
download | mediawikicore-839613ff7762bbda3da0ab9f0fe3d84d65d96280.tar.gz mediawikicore-839613ff7762bbda3da0ab9f0fe3d84d65d96280.zip |
tests: Use namespaced classes
Changes to the use statements and some additions
are done automatically via script
This also updates @covers tag for the namespaced classes
Change-Id: I859ba6d05018c99710b744e2becab432410d3bca
Diffstat (limited to 'tests/phpunit/includes/content/FallbackContentHandlerTest.php')
-rw-r--r-- | tests/phpunit/includes/content/FallbackContentHandlerTest.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/phpunit/includes/content/FallbackContentHandlerTest.php b/tests/phpunit/includes/content/FallbackContentHandlerTest.php index 1f7444f5381f..c530ae8e5eaf 100644 --- a/tests/phpunit/includes/content/FallbackContentHandlerTest.php +++ b/tests/phpunit/includes/content/FallbackContentHandlerTest.php @@ -4,6 +4,7 @@ use MediaWiki\Content\FallbackContent; use MediaWiki\Content\FallbackContentHandler; use MediaWiki\Context\RequestContext; use MediaWiki\Parser\ParserObserver; +use MediaWiki\Parser\ParserOptions; use MediaWiki\Request\FauxRequest; use MediaWiki\Title\Title; @@ -12,7 +13,7 @@ use MediaWiki\Title\Title; * * @group ContentHandler * @covers \MediaWiki\Content\FallbackContentHandler - * @covers \ContentHandler + * @covers \MediaWiki\Content\ContentHandler */ class FallbackContentHandlerTest extends MediaWikiLangTestCase { |