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);