diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-09-10 15:35:21 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-09-10 15:35:21 +0200 |
commit | 007802121c7e87ebfb892ad45c7a8f53f4c477a3 (patch) | |
tree | b7b0237cbda45f5f64e0c6c9c157a22e3233d58d /tests/lib/util.php | |
parent | 70ebe86e60831252b1400e1235020e3ed84526d5 (diff) | |
download | nextcloud-server-007802121c7e87ebfb892ad45c7a8f53f4c477a3.tar.gz nextcloud-server-007802121c7e87ebfb892ad45c7a8f53f4c477a3.zip |
requesttoken has now a length of 30 chars
Diffstat (limited to 'tests/lib/util.php')
-rw-r--r-- | tests/lib/util.php | 2 |
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() { |