diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2017-04-25 13:12:24 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-04-25 20:18:49 +0200 |
commit | aae079aa292f70ec7025286260e8b9248daf94bc (patch) | |
tree | c4238be0bf9b2a34e443e6ebff312775f459c08b /tests | |
parent | bb5e5efa6d76d577d6657326f60daab7544054f4 (diff) | |
download | nextcloud-server-aae079aa292f70ec7025286260e8b9248daf94bc.tar.gz nextcloud-server-aae079aa292f70ec7025286260e8b9248daf94bc.zip |
AppToken to 72 chars
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Core/Controller/ClientFlowLoginControllerTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Core/Controller/ClientFlowLoginControllerTest.php b/tests/Core/Controller/ClientFlowLoginControllerTest.php index afaca3dacab..7c525b53210 100644 --- a/tests/Core/Controller/ClientFlowLoginControllerTest.php +++ b/tests/Core/Controller/ClientFlowLoginControllerTest.php @@ -310,7 +310,7 @@ class ClientFlowLoginControllerTest extends TestCase { $this->random ->expects($this->once()) ->method('generate') - ->with(60) + ->with(72) ->willReturn('MyGeneratedToken'); $user = $this->createMock(IUser::class); $user @@ -374,7 +374,7 @@ class ClientFlowLoginControllerTest extends TestCase { $this->random ->expects($this->once()) ->method('generate') - ->with(60) + ->with(72) ->willReturn('MyGeneratedToken'); $user = $this->createMock(IUser::class); $user |