fix merge

This commit is contained in:
Nicolas Grekas 2019-08-23 13:11:38 +02:00
parent 50bdb42c1a
commit 3456446de5

View File

@ -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()