diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-05-27 15:34:57 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-05-27 15:34:57 +0200 |
commit | 710e9c2d14c8f25cfedf5cc04fa4ca0e12fc2f19 (patch) | |
tree | fd833ea36330aafe382be58ffd7f99f59182536b /apps/files_encryption/tests | |
parent | 1a3f7891ea86f108fbd984b12fe047ffacb20efb (diff) | |
download | nextcloud-server-710e9c2d14c8f25cfedf5cc04fa4ca0e12fc2f19.tar.gz nextcloud-server-710e9c2d14c8f25cfedf5cc04fa4ca0e12fc2f19.zip |
fix tests, after unused variables are removed
Diffstat (limited to 'apps/files_encryption/tests')
-rwxr-xr-x | apps/files_encryption/tests/crypt.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/tests/crypt.php b/apps/files_encryption/tests/crypt.php index 74b4252a1d4..fa2a2984d58 100755 --- a/apps/files_encryption/tests/crypt.php +++ b/apps/files_encryption/tests/crypt.php @@ -575,7 +575,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { */ function testLegacyKeyRecryptKeyfileEncrypt($crypted) { - $recrypted = Encryption\Crypt::LegacyKeyRecryptKeyfile($crypted, $this->pass, array($this->genPublicKey), $this->pass, ''); + $recrypted = Encryption\Crypt::LegacyKeyRecryptKeyfile($crypted, $this->pass, array($this->genPublicKey)); $this->assertNotEquals($this->dataLong, $recrypted['data']); |