diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2015-01-29 16:57:46 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2015-01-29 16:57:46 +0100 |
commit | 333f4e7913ff8085f46f80db5bf1224fb1cd6e0c (patch) | |
tree | 1cafb67857e87412a8b148e0cdda288d436d1e7c /apps/files_encryption/tests | |
parent | 4a5f626979136b71775e062cf1baf79945b886d6 (diff) | |
download | nextcloud-server-333f4e7913ff8085f46f80db5bf1224fb1cd6e0c.tar.gz nextcloud-server-333f4e7913ff8085f46f80db5bf1224fb1cd6e0c.zip |
Fix intendation
Diffstat (limited to 'apps/files_encryption/tests')
-rwxr-xr-x | apps/files_encryption/tests/share.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files_encryption/tests/share.php b/apps/files_encryption/tests/share.php index 37793369956..a59838ede1c 100755 --- a/apps/files_encryption/tests/share.php +++ b/apps/files_encryption/tests/share.php @@ -668,7 +668,7 @@ class Share extends TestCase { . $this->filename . '/' . self::TEST_ENCRYPTION_SHARE_USER1 . '.shareKey')); } - function testPublicShareFile() { + function testPublicShareFile() { // login as admin self::loginHelper(self::TEST_ENCRYPTION_SHARE_USER1); @@ -676,7 +676,7 @@ class Share extends TestCase { $cryptedFile = file_put_contents('crypt:///' . self::TEST_ENCRYPTION_SHARE_USER1 . '/files/' . $this->filename, $this->dataShort); // test that data was successfully written - $this->assertInternalType('int', $cryptedFile); + $this->assertInternalType('int', $cryptedFile); // disable encryption proxy to prevent recursive calls $proxyStatus = \OC_FileProxy::$enabled; @@ -687,7 +687,7 @@ class Share extends TestCase { '/' . self::TEST_ENCRYPTION_SHARE_USER1 . '/files/' . $this->filename); // check if we have a valid file info - $this->assertInstanceOf('\OC\Files\FileInfo', $fileInfo); + $this->assertInstanceOf('\OC\Files\FileInfo', $fileInfo); // check if the unencrypted file size is stored $this->assertGreaterThan(0, $fileInfo['unencrypted_size']); |