diff options
author | Joas Schilling <coding@schilljs.com> | 2017-04-20 12:37:59 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-04-20 12:37:59 +0200 |
commit | d2d9f74707803deb4845db83da2a604898908381 (patch) | |
tree | b32348c4d37b9f4cec4c38ea560457c9af53dc5a /tests/lib/Authentication/Token/DefaultTokenProviderTest.php | |
parent | a0ada9aab40c83b242cfbda1ab6078938c14bea7 (diff) | |
download | nextcloud-server-d2d9f74707803deb4845db83da2a604898908381.tar.gz nextcloud-server-d2d9f74707803deb4845db83da2a604898908381.zip |
Fix warning with undefined method
Trying to configure method "getRemember" which cannot be configured
because it does not exist, has not been specified, is final, or is
static
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/lib/Authentication/Token/DefaultTokenProviderTest.php')
-rw-r--r-- | tests/lib/Authentication/Token/DefaultTokenProviderTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lib/Authentication/Token/DefaultTokenProviderTest.php b/tests/lib/Authentication/Token/DefaultTokenProviderTest.php index bbfcd93913b..2c8c2d7e196 100644 --- a/tests/lib/Authentication/Token/DefaultTokenProviderTest.php +++ b/tests/lib/Authentication/Token/DefaultTokenProviderTest.php @@ -274,7 +274,7 @@ class DefaultTokenProviderTest extends TestCase { public function testRenewSessionTokenWithoutPassword() { $token = $this->getMockBuilder(DefaultToken::class) ->disableOriginalConstructor() - ->setMethods(['getUID', 'getLoginName', 'getPassword', 'getName']) + ->setMethods(['getUID', 'getLoginName', 'getPassword', 'getName', 'getRemember']) ->getMock(); $token ->expects($this->at(0)) @@ -293,7 +293,7 @@ class DefaultTokenProviderTest extends TestCase { ->method('getName') ->willReturn('MyTokenName'); $token - ->expects($this->at(3)) + ->expects($this->at(4)) ->method('getRemember') ->willReturn(IToken::DO_NOT_REMEMBER); $this->config @@ -325,7 +325,7 @@ class DefaultTokenProviderTest extends TestCase { public function testRenewSessionTokenWithPassword() { $token = $this->getMockBuilder(DefaultToken::class) ->disableOriginalConstructor() - ->setMethods(['getUID', 'getLoginName', 'getPassword', 'getName']) + ->setMethods(['getUID', 'getLoginName', 'getPassword', 'getName', 'getRemember']) ->getMock(); $token ->expects($this->at(0)) @@ -348,7 +348,7 @@ class DefaultTokenProviderTest extends TestCase { ->method('getName') ->willReturn('MyTokenName'); $token - ->expects($this->at(3)) + ->expects($this->at(5)) ->method('getRemember') ->willReturn(IToken::REMEMBER); $this->crypto |