diff --git a/apps/files_sharing/tests/permissions.php b/apps/files_sharing/tests/permissions.php
index 5ac251b0527cf59b321cceb473796dc03d4ebee1..0a222b08512253d0bbb49d7517ac79157266ac96 100644
--- a/apps/files_sharing/tests/permissions.php
+++ b/apps/files_sharing/tests/permissions.php
@@ -111,5 +111,10 @@ class Test_Files_Sharing_Permissions extends Test_Files_Sharing_Base {
 		$this->assertEquals(7, $contents[0]['permissions']);
 		$this->assertEquals('textfile1.txt', $contents[1]['name']);
 		$this->assertEquals(7, $contents[1]['permissions']);
+
+		// the share mount point should always have delete permissions to allow the user
+		// to unmount it
+		$restrictedShare = $this->secondView->getFileInfo('files/shareddirrestricted');
+		$this->assertEquals(7 | \OCP\PERMISSION_DELETE, $restrictedShare['permissions']);
 	}
 }