diff options
author | Joas Schilling <coding@schilljs.com> | 2023-05-31 14:15:52 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-06-02 08:08:24 +0200 |
commit | 6d076c1ee9f0cd2de7357df801c27b08a70b89a1 (patch) | |
tree | 6b73bdbfe84e19e6b1a655c24a5ee87e566b6531 /tests/lib/EventDispatcher | |
parent | 5591da0b33f4f4ce50f289318c49595e116ba4a3 (diff) | |
download | nextcloud-server-6d076c1ee9f0cd2de7357df801c27b08a70b89a1.tar.gz nextcloud-server-6d076c1ee9f0cd2de7357df801c27b08a70b89a1.zip |
fix(dispatcher): Migrate to OCP event dispatcher before symfony/event-dispatcher upgrade
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/lib/EventDispatcher')
-rw-r--r-- | tests/lib/EventDispatcher/SymfonyAdapterTest.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/lib/EventDispatcher/SymfonyAdapterTest.php b/tests/lib/EventDispatcher/SymfonyAdapterTest.php index 1b770c94e56..623706f9da7 100644 --- a/tests/lib/EventDispatcher/SymfonyAdapterTest.php +++ b/tests/lib/EventDispatcher/SymfonyAdapterTest.php @@ -179,6 +179,7 @@ class SymfonyAdapterTest extends TestCase { $symfonyDispatcher->expects(self::once()) ->method('dispatch') ->with( + $this->anything(), $eventName ) ->willReturnArgument(0); |