From 2588ea1c46d4f124005bae357a2a10d214526ffe Mon Sep 17 00:00:00 2001 From: DariusIII Date: Thu, 28 Feb 2019 22:29:01 +0100 Subject: [PATCH] Update AbstractEventDispatcherTest.php --- tests/Adapters/AbstractEventDispatcherTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Adapters/AbstractEventDispatcherTest.php b/tests/Adapters/AbstractEventDispatcherTest.php index d918199f..89a44f5a 100644 --- a/tests/Adapters/AbstractEventDispatcherTest.php +++ b/tests/Adapters/AbstractEventDispatcherTest.php @@ -41,7 +41,7 @@ abstract protected function createEventDispatcher(); /** @test */ public function it_dispatches_events_through_both_laravel_and_symfony() { - $this->laravel->fire(static::EVENT, null)->shouldBeCalled(); + $this->laravel->dispatch(static::EVENT, null)->shouldBeCalled(); $this->symfony->dispatch(static::EVENT, null)->shouldBeCalled(); $this->dispatcher->dispatch(static::EVENT);