diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2016-01-11 19:59:15 +0100 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2016-01-11 19:59:15 +0100 |
commit | 98c4951f458f398c022bf928ff17b106a7901428 (patch) | |
tree | 637a9189abdccda6d4cf3a594d9be462dad32384 /tests/lib/testcase.php | |
parent | 373776b8d84bece3df4a06b157bbe41f51ef511d (diff) | |
download | nextcloud-server-98c4951f458f398c022bf928ff17b106a7901428.tar.gz nextcloud-server-98c4951f458f398c022bf928ff17b106a7901428.zip |
getLowStrengthGenerator does not do anything anymore
Diffstat (limited to 'tests/lib/testcase.php')
-rw-r--r-- | tests/lib/testcase.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/testcase.php b/tests/lib/testcase.php index 93b354863a9..38d5cf49320 100644 --- a/tests/lib/testcase.php +++ b/tests/lib/testcase.php @@ -150,7 +150,7 @@ abstract class TestCase extends \PHPUnit_Framework_TestCase { * @return string */ protected static function getUniqueID($prefix = '', $length = 13) { - return $prefix . \OC::$server->getSecureRandom()->getLowStrengthGenerator()->generate( + return $prefix . \OC::$server->getSecureRandom()->generate( $length, // Do not use dots and slashes as we use the value for file names ISecureRandom::CHAR_DIGITS . ISecureRandom::CHAR_LOWER . ISecureRandom::CHAR_UPPER |