diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-09-15 16:12:28 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-09-16 18:11:38 +0200 |
commit | a165d8f978ba0551ffa0905e63d820c39befbd83 (patch) | |
tree | 060841a0c5cf8ee863c05c6229458ff7807e1101 /tests | |
parent | 22822d5e9b29e7c49a524bf2e6e60291c244ff09 (diff) | |
download | nextcloud-server-a165d8f978ba0551ffa0905e63d820c39befbd83.tar.gz nextcloud-server-a165d8f978ba0551ffa0905e63d820c39befbd83.zip |
chore: Fix encryption test use statement
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Encryption/EncryptionWrapperTest.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/lib/Encryption/EncryptionWrapperTest.php b/tests/lib/Encryption/EncryptionWrapperTest.php index bda8597a9c4..1ac7342a3d8 100644 --- a/tests/lib/Encryption/EncryptionWrapperTest.php +++ b/tests/lib/Encryption/EncryptionWrapperTest.php @@ -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]], ]; } } |