From 3456446de5849c8b70b83b6d152d67e1cfa10e00 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 23 Aug 2019 13:11:38 +0200 Subject: [PATCH] fix merge --- .../EventDispatcher/Tests/ImmutableEventDispatcherTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/EventDispatcher/Tests/ImmutableEventDispatcherTest.php b/src/Symfony/Component/EventDispatcher/Tests/ImmutableEventDispatcherTest.php index edce6f199d..1a33c19b15 100644 --- a/src/Symfony/Component/EventDispatcher/Tests/ImmutableEventDispatcherTest.php +++ b/src/Symfony/Component/EventDispatcher/Tests/ImmutableEventDispatcherTest.php @@ -47,7 +47,7 @@ class ImmutableEventDispatcherTest extends TestCase ->with($event, 'event') ->willReturn($resultEvent); - $this->assertSame($resultEvent, $this->dispatcher->dispatch('event', $event)); + $this->assertSame($resultEvent, $this->dispatcher->dispatch($event, 'event')); } public function testGetListenersDelegates()