diff options
author | Robin Appelman <robin@icewind.nl> | 2018-11-29 16:34:49 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2018-11-29 16:36:35 +0100 |
commit | 7cdc04a7932f45889fb72b3e29dd12708f1d091c (patch) | |
tree | 53ce77d3b3a52296ff1be66b83efe317076ec2ac /tests | |
parent | d5e0292ba26efe759e5260a4a8ae6d10f9c11d38 (diff) | |
download | nextcloud-server-7cdc04a7932f45889fb72b3e29dd12708f1d091c.tar.gz nextcloud-server-7cdc04a7932f45889fb72b3e29dd12708f1d091c.zip |
update encryption wrapper tests
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Encryption/EncryptionWrapperTest.php | 8 |
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]], ]; } |