diff options
author | kondou <kondou@ts.unde.re> | 2013-08-15 08:49:19 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-08-15 15:57:32 +0200 |
commit | 9c5416fe4a12acf5631b8822feb942143bf2408f (patch) | |
tree | a9d6297ae8400cdf73b1a48a22391c9fae3cced5 /tests/lib/db.php | |
parent | b9f3bb24261961ead93fb76c1295066cfa666299 (diff) | |
download | nextcloud-server-9c5416fe4a12acf5631b8822feb942143bf2408f.tar.gz nextcloud-server-9c5416fe4a12acf5631b8822feb942143bf2408f.zip |
Clean up \OC\Util
- Use camelCase
- Add some phpdoc
- Fix some indents
- Use some more spacing
Diffstat (limited to 'tests/lib/db.php')
-rw-r--r-- | tests/lib/db.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/db.php b/tests/lib/db.php index 51edbf7b309..1977025cf12 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -15,7 +15,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { public function setUp() { $dbfile = OC::$SERVERROOT.'/tests/data/db_structure.xml'; - $r = '_'.OC_Util::generate_random_bytes('4').'_'; + $r = '_'.OC_Util::generateRandomBytes('4').'_'; $content = file_get_contents( $dbfile ); $content = str_replace( '*dbprefix*', '*dbprefix*'.$r, $content ); file_put_contents( self::$schema_file, $content ); |