summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2017-04-25 13:12:24 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2017-04-25 20:18:49 +0200
commitaae079aa292f70ec7025286260e8b9248daf94bc (patch)
treec4238be0bf9b2a34e443e6ebff312775f459c08b /tests
parentbb5e5efa6d76d577d6657326f60daab7544054f4 (diff)
downloadnextcloud-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.php4
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