Fix tests

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2018-01-14 11:33:53 +01:00 committed by Morris Jobke
parent de5d7aa331
commit 6e1ee1e7a7
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
3 changed files with 4 additions and 6 deletions

View File

@ -55,9 +55,9 @@ class TokenHandlerTest extends \Test\TestCase {
$this->expectedTokenLength, $this->expectedTokenLength,
ISecureRandom::CHAR_LOWER . ISecureRandom::CHAR_UPPER . ISecureRandom::CHAR_DIGITS ISecureRandom::CHAR_LOWER . ISecureRandom::CHAR_UPPER . ISecureRandom::CHAR_DIGITS
) )
->willReturn(true); ->willReturn('mytoken');
$this->assertTrue($this->tokenHandler->generateToken()); $this->assertSame('mytoken', $this->tokenHandler->generateToken());
} }

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* @copyright Copyright (c) 2016, ownCloud, Inc. * @copyright Copyright (c) 2016, ownCloud, Inc.
* *
@ -21,8 +22,6 @@
* *
*/ */
declare(strict_types=1);
namespace OC\Security; namespace OC\Security;
use OCP\Security\ISecureRandom; use OCP\Security\ISecureRandom;

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* @copyright Copyright (c) 2016, ownCloud, Inc. * @copyright Copyright (c) 2016, ownCloud, Inc.
* *
@ -23,8 +24,6 @@
* *
*/ */
declare(strict_types=1);
namespace OCP\Security; namespace OCP\Security;
/** /**