chore: Fix encryption test use statement

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
Côme Chilliet 2024-09-15 16:12:28 +02:00
parent 22822d5e9b
commit a165d8f978
No known key found for this signature in database
GPG key ID: A3E2F658B28C760A

View file

@ -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]],
];
}
}