summaryrefslogtreecommitdiffstats
path: root/apps/encryption/tests
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2016-03-02 19:25:44 +0100
committerBjoern Schiessle <schiessle@owncloud.com>2016-03-18 11:06:14 +0100
commit89223379ad155ae0896d1481089e3751257aa76f (patch)
treeb0e8f229ad3bbf4197499b7fc9b0626c699a2b9c /apps/encryption/tests
parent5e267589d40400223e5dce692568ab2933be14f7 (diff)
downloadnextcloud-server-89223379ad155ae0896d1481089e3751257aa76f.tar.gz
nextcloud-server-89223379ad155ae0896d1481089e3751257aa76f.zip
replaceUserKeys() actually deletes the users keys -> update method name and doc-block
Diffstat (limited to 'apps/encryption/tests')
-rw-r--r--apps/encryption/tests/hooks/UserHooksTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/encryption/tests/hooks/UserHooksTest.php b/apps/encryption/tests/hooks/UserHooksTest.php
index 1aeafad0ba2..34cd74cd369 100644
--- a/apps/encryption/tests/hooks/UserHooksTest.php
+++ b/apps/encryption/tests/hooks/UserHooksTest.php
@@ -251,7 +251,7 @@ class UserHooksTest extends TestCase {
public function testPostPasswordReset() {
$this->keyManagerMock->expects($this->once())
- ->method('replaceUserKeys')
+ ->method('deleteUserKeys')
->with('testUser');
$this->userSetupMock->expects($this->once())