diff options
author | Thomas Citharel <tcit@tcit.fr> | 2016-09-23 14:30:24 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-09-27 18:30:19 +0200 |
commit | 5215833fe4b661c46dfed88eb29754011dbb899f (patch) | |
tree | bbaffd917a7bdbfffb91ca5e227a9bffaa71e8f5 /apps/dav/tests/unit/DAV | |
parent | 97a47f49a14a9dd2b0edb12ac54649cf9f66584a (diff) | |
download | nextcloud-server-5215833fe4b661c46dfed88eb29754011dbb899f.tar.gz nextcloud-server-5215833fe4b661c46dfed88eb29754011dbb899f.zip |
delete shares to an user
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'apps/dav/tests/unit/DAV')
-rw-r--r-- | apps/dav/tests/unit/DAV/HookManagerTest.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/dav/tests/unit/DAV/HookManagerTest.php b/apps/dav/tests/unit/DAV/HookManagerTest.php index 05384813f02..cde24214dd1 100644 --- a/apps/dav/tests/unit/DAV/HookManagerTest.php +++ b/apps/dav/tests/unit/DAV/HookManagerTest.php @@ -172,6 +172,7 @@ class HookManagerTest extends TestCase { ['id' => 'personal'] ]); $cal->expects($this->once())->method('deleteCalendar'); + $cal->expects($this->once())->method('deleteAllSharesForUser'); /** @var CardDavBackend | \PHPUnit_Framework_MockObject_MockObject $card */ $card = $this->getMockBuilder(CardDavBackend::class) |