Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2017-04-25 14:12:24 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2017-04-25 21:18:49 +0300
commitaae079aa292f70ec7025286260e8b9248daf94bc (patch)
treec4238be0bf9b2a34e443e6ebff312775f459c08b /tests/Core
parentbb5e5efa6d76d577d6657326f60daab7544054f4 (diff)
AppToken to 72 chars
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests/Core')
-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