diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2015-04-15 19:37:03 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2015-04-16 14:15:04 +0200 |
commit | 959665003b408ed837066307350fb76b83beaa52 (patch) | |
tree | b95a3dbf9b91abe270732c1ae9874be488af8d16 /apps/encryption/tests | |
parent | b25c06f5769fbcd90a780cbce90998a38c112043 (diff) | |
download | nextcloud-server-959665003b408ed837066307350fb76b83beaa52.tar.gz nextcloud-server-959665003b408ed837066307350fb76b83beaa52.zip |
decrypt private key for public shares correctly
Diffstat (limited to 'apps/encryption/tests')
-rw-r--r-- | apps/encryption/tests/lib/KeyManagerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/encryption/tests/lib/KeyManagerTest.php b/apps/encryption/tests/lib/KeyManagerTest.php index 1e51341a7e4..251628d99f2 100644 --- a/apps/encryption/tests/lib/KeyManagerTest.php +++ b/apps/encryption/tests/lib/KeyManagerTest.php @@ -268,7 +268,7 @@ class KeyManagerTest extends TestCase { ->willReturn(true); $this->cryptMock->expects($this->once()) - ->method('symmetricDecryptFileContent') + ->method('decryptPrivateKey') ->willReturn(true); $this->cryptMock->expects($this->once()) |