summaryrefslogtreecommitdiffstats
path: root/tests/lib/util.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-09-04 23:15:17 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-09-04 23:15:17 +0200
commit835f477d8fda0566e5a03a652a3b8005cb886389 (patch)
tree46a4390fbd3611c0ba15115614c56d2c49aaabdc /tests/lib/util.php
parent206f83941b26b16f89e695ae84b998e9cf11132a (diff)
parent3b25babe35015224bb14e697c0b6d61da2841978 (diff)
downloadnextcloud-server-835f477d8fda0566e5a03a652a3b8005cb886389.tar.gz
nextcloud-server-835f477d8fda0566e5a03a652a3b8005cb886389.zip
Merge branch 'master' into appframework-master
Diffstat (limited to 'tests/lib/util.php')
-rw-r--r--tests/lib/util.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/util.php b/tests/lib/util.php
index 13aa49c8c6f..d607a3e7725 100644
--- a/tests/lib/util.php
+++ b/tests/lib/util.php
@@ -71,8 +71,8 @@ class Test_Util extends PHPUnit_Framework_TestCase {
$this->assertTrue(\OC_Util::isInternetConnectionEnabled());
}
- function testGenerate_random_bytes() {
- $result = strlen(OC_Util::generate_random_bytes(59));
+ function testGenerateRandomBytes() {
+ $result = strlen(OC_Util::generateRandomBytes(59));
$this->assertEquals(59, $result);
}