summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2018-11-29 16:34:49 +0100
committerRobin Appelman <robin@icewind.nl>2018-11-29 16:34:49 +0100
commit67a46b5aa969b8199fb9a003935ee8c840bf50e4 (patch)
tree97e4d3a4c7832729a0320d370bb4263717fd3eff
parent2c1f6331a4d6a5d4663d57858f10faa851e33d82 (diff)
downloadnextcloud-server-67a46b5aa969b8199fb9a003935ee8c840bf50e4.tar.gz
nextcloud-server-67a46b5aa969b8199fb9a003935ee8c840bf50e4.zip
update encryption wrapper tests
Signed-off-by: Robin Appelman <robin@icewind.nl>
-rw-r--r--tests/lib/Encryption/EncryptionWrapperTest.php8
1 files changed, 1 insertions, 7 deletions
diff --git a/tests/lib/Encryption/EncryptionWrapperTest.php b/tests/lib/Encryption/EncryptionWrapperTest.php
index d20efa8821f..cff48d2cd6d 100644
--- a/tests/lib/Encryption/EncryptionWrapperTest.php
+++ b/tests/lib/Encryption/EncryptionWrapperTest.php
@@ -92,13 +92,7 @@ class EncryptionWrapperTest extends TestCase {
[true, ['OCA\Files_Trashbin\Storage']],
// Do not wrap shared storages
- [false, ['OCA\Files_Sharing\SharedStorage']],
- [false, ['OCA\Files_Sharing\External\Storage']],
- [false, ['OC\Files\Storage\OwnCloud']],
- [false, ['OCA\Files_Sharing\SharedStorage', 'OCA\Files_Sharing\External\Storage']],
- [false, ['OCA\Files_Sharing\SharedStorage', 'OC\Files\Storage\OwnCloud']],
- [false, ['OCA\Files_Sharing\External\Storage', 'OC\Files\Storage\OwnCloud']],
- [false, ['OCA\Files_Sharing\SharedStorage', 'OCA\Files_Sharing\External\Storage', 'OC\Files\Storage\OwnCloud']],
+ [false, [Storage\IDisableEncryptionStorage::class]],
];
}