diff options
author | Joas Schilling <coding@schilljs.com> | 2023-07-25 21:45:07 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-07-27 23:13:37 +0200 |
commit | ad12a740cb619d701de332eedda91dcbb1f53047 (patch) | |
tree | 3bb0fcd87424e72ca0f259e94232c361e7e695c1 /tests/lib/Files/Storage/Wrapper/EncryptionTest.php | |
parent | b93f101d6209905d22b90816bf6a0cfe89a38a8b (diff) | |
download | nextcloud-server-ad12a740cb619d701de332eedda91dcbb1f53047.tar.gz nextcloud-server-ad12a740cb619d701de332eedda91dcbb1f53047.zip |
fix!: Remove symfony EventDispatcherInterface from User
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/lib/Files/Storage/Wrapper/EncryptionTest.php')
-rw-r--r-- | tests/lib/Files/Storage/Wrapper/EncryptionTest.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/lib/Files/Storage/Wrapper/EncryptionTest.php b/tests/lib/Files/Storage/Wrapper/EncryptionTest.php index ae776e40666..11be0c60fbd 100644 --- a/tests/lib/Files/Storage/Wrapper/EncryptionTest.php +++ b/tests/lib/Files/Storage/Wrapper/EncryptionTest.php @@ -20,7 +20,6 @@ use OCP\Files\Mount\IMountPoint; use OCP\ICacheFactory; use OCP\IConfig; use Psr\Log\LoggerInterface; -use Symfony\Component\EventDispatcher\EventDispatcherInterface; use Test\Files\Storage\Storage; class EncryptionTest extends Storage { @@ -133,7 +132,6 @@ class EncryptionTest extends Storage { ->setMethods(['getUidAndFilename', 'isFile', 'isExcluded']) ->setConstructorArgs([new View(), new Manager( $this->config, - $this->createMock(EventDispatcherInterface::class), $this->createMock(ICacheFactory::class), $this->createMock(IEventDispatcher::class) ), $this->groupManager, $this->config, $this->arrayCache]) @@ -574,7 +572,6 @@ class EncryptionTest extends Storage { new View(), new Manager( $this->config, - $this->createMock(EventDispatcherInterface::class), $this->createMock(ICacheFactory::class), $this->createMock(IEventDispatcher::class) ), @@ -657,7 +654,6 @@ class EncryptionTest extends Storage { $util = $this->getMockBuilder('\OC\Encryption\Util') ->setConstructorArgs([new View(), new Manager( $this->config, - $this->createMock(EventDispatcherInterface::class), $this->createMock(ICacheFactory::class), $this->createMock(IEventDispatcher::class) ), $this->groupManager, $this->config, $this->arrayCache]) |