diff options
author | Cindy Cicalese <cindom@gmail.com> | 2021-04-12 20:43:46 -0400 |
---|---|---|
committer | Cicalese <ccicalese@wikimedia.org> | 2021-04-21 02:48:31 +0000 |
commit | ce6a4ef45e623c248b29ece228bb72e7fc27f51a (patch) | |
tree | 83bcb4ba2be02bb40c0c11bb0e280a755362fad3 /tests/phpunit/includes/auth/AbstractPasswordPrimaryAuthenticationProviderTest.php | |
parent | f8ed11e1705137da7077ad9d2045f4ccd9ed4e06 (diff) | |
download | mediawikicore-ce6a4ef45e623c248b29ece228bb72e7fc27f51a.tar.gz mediawikicore-ce6a4ef45e623c248b29ece228bb72e7fc27f51a.zip |
Use WatchlistManager in auth classes
Change-Id: Ib8d338bc0b167277f36ab6c5d45c98c35e4a9ba9
Diffstat (limited to 'tests/phpunit/includes/auth/AbstractPasswordPrimaryAuthenticationProviderTest.php')
-rw-r--r-- | tests/phpunit/includes/auth/AbstractPasswordPrimaryAuthenticationProviderTest.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/phpunit/includes/auth/AbstractPasswordPrimaryAuthenticationProviderTest.php b/tests/phpunit/includes/auth/AbstractPasswordPrimaryAuthenticationProviderTest.php index c2afed08668d..6ee49f3e7b68 100644 --- a/tests/phpunit/includes/auth/AbstractPasswordPrimaryAuthenticationProviderTest.php +++ b/tests/phpunit/includes/auth/AbstractPasswordPrimaryAuthenticationProviderTest.php @@ -132,7 +132,8 @@ class AbstractPasswordPrimaryAuthenticationProviderTest extends \MediaWikiIntegr $services->getReadOnlyMode(), $services->getUserNameUtils(), $services->getBlockManager(), - $services->getBlockErrorFormatter() + $services->getBlockErrorFormatter(), + $services->getWatchlistManager() ); $provider = $this->getMockForAbstractClass( |