diff options
author | Martin Urbanec <martin.urbanec@wikimedia.cz> | 2023-11-29 11:21:43 +0100 |
---|---|---|
committer | Martin Urbanec <martin.urbanec@wikimedia.cz> | 2023-11-29 13:27:13 +0100 |
commit | 29af4dd074ecc71c67bb9e530d82daddcf45c724 (patch) | |
tree | 980998f7874dda640aefa1ffe7b15e0699abb867 /tests/phpunit/includes/parser/ParserTest.php | |
parent | 474925f009bce349941fc3e6c5e5baeca785df02 (diff) | |
download | mediawikicore-29af4dd074ecc71c67bb9e530d82daddcf45c724.tar.gz mediawikicore-29af4dd074ecc71c67bb9e530d82daddcf45c724.zip |
Move user options related classes into its own namespace
There are a couple of user options related classes already,
and the T321527 work on dynamic defaults is going to add
even more. Let's move them into a separate namespace
to make core a bit more organized.
Old name is kept as an alias for compatibility purposes.
Bug: T321527
Bug: T352284
Change-Id: I9822eb1553870b876d0b8a927e4e86c27d83bd52
Diffstat (limited to 'tests/phpunit/includes/parser/ParserTest.php')
-rw-r--r-- | tests/phpunit/includes/parser/ParserTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/phpunit/includes/parser/ParserTest.php b/tests/phpunit/includes/parser/ParserTest.php index 6c5d8ed83708..f20d64df7fb5 100644 --- a/tests/phpunit/includes/parser/ParserTest.php +++ b/tests/phpunit/includes/parser/ParserTest.php @@ -59,7 +59,7 @@ class ParserTest extends MediaWikiIntegrationTestCase { $this->createNoOpMock( HookContainer::class, [ 'run' ] ), $this->createNoOpMock( MediaWiki\Tidy\TidyDriverBase::class ), $this->createNoOpMock( WANObjectCache::class ), - $this->createNoOpMock( MediaWiki\User\UserOptionsLookup::class ), + $this->createNoOpMock( MediaWiki\User\Options\UserOptionsLookup::class ), $this->createNoOpMock( MediaWiki\User\UserFactory::class ), $this->createNoOpMock( TitleFormatter::class ), $this->createNoOpMock( HttpRequestFactory::class ), |