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:
authorLukas Reschke <lukas@owncloud.com>2014-09-10 18:04:44 +0400
committerLukas Reschke <lukas@owncloud.com>2014-09-10 18:04:44 +0400
commit1d639161b654c3efef7c9ae28511cb6d8b3529c4 (patch)
treeb7b0237cbda45f5f64e0c6c9c157a22e3233d58d
parent70ebe86e60831252b1400e1235020e3ed84526d5 (diff)
parent007802121c7e87ebfb892ad45c7a8f53f4c477a3 (diff)
Merge pull request #10990 from owncloud/fix-testCallRegister-master
requesttoken has now a length of 30 chars
-rw-r--r--tests/lib/util.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/util.php b/tests/lib/util.php
index a2efcca2603..8964f9f2666 100644
--- a/tests/lib/util.php
+++ b/tests/lib/util.php
@@ -39,7 +39,7 @@ class Test_Util extends PHPUnit_Framework_TestCase {
function testCallRegister() {
$result = strlen(OC_Util::callRegister());
- $this->assertEquals(20, $result);
+ $this->assertEquals(30, $result);
}
function testSanitizeHTML() {