From 867d720f150dc5a728a092f8d66d8b1c1a5efc5a Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Wed, 6 Nov 2019 12:29:58 +0100 Subject: Tests: Replaced setMethods as it is deprecated --- tests/Unit/Helpers/AuthenticatorTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/Unit/Helpers/AuthenticatorTest.php') diff --git a/tests/Unit/Helpers/AuthenticatorTest.php b/tests/Unit/Helpers/AuthenticatorTest.php index 83dc72ad..1dc39a28 100644 --- a/tests/Unit/Helpers/AuthenticatorTest.php +++ b/tests/Unit/Helpers/AuthenticatorTest.php @@ -128,7 +128,7 @@ class AuthenticatorTest extends ServiceProviderTest /** @var Authenticator|MockObject $auth */ $auth = $this->getMockBuilder(Authenticator::class) ->setConstructorArgs([$request, $session, $userRepository]) - ->setMethods(['getPermissionsByGroup', 'getPermissionsByUser', 'user']) + ->onlyMethods(['getPermissionsByGroup', 'getPermissionsByUser', 'user']) ->getMock(); $auth->expects($this->exactly(1)) ->method('getPermissionsByGroup') @@ -203,7 +203,7 @@ class AuthenticatorTest extends ServiceProviderTest /** @var Authenticator|MockObject $auth */ $auth = $this->getMockBuilder(Authenticator::class) ->disableOriginalConstructor() - ->setMethods(['setPassword']) + ->onlyMethods(['setPassword']) ->getMock(); $auth->expects($this->once()) -- cgit v1.2.3-54-g00ecf