mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
chore: Fix encryption test use statement
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
parent
22822d5e9b
commit
a165d8f978
1 changed files with 2 additions and 1 deletions
|
|
@ -10,6 +10,7 @@ namespace Test\Encryption;
|
|||
use OC\Encryption\EncryptionWrapper;
|
||||
use OC\Encryption\Manager;
|
||||
use OC\Memcache\ArrayCache;
|
||||
use OCP\Files\Storage\IDisableEncryptionStorage;
|
||||
use OCP\Files\Storage\IStorage;
|
||||
use Psr\Log\LoggerInterface;
|
||||
use Test\TestCase;
|
||||
|
|
@ -74,7 +75,7 @@ class EncryptionWrapperTest extends TestCase {
|
|||
[true, ['OCA\Files_Trashbin\Storage']],
|
||||
|
||||
// Do not wrap shared storages
|
||||
[false, [Storage\IDisableEncryptionStorage::class]],
|
||||
[false, [IDisableEncryptionStorage::class]],
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue