From fd5cf2f25fe6e914ea51dff405f50cedf4272fa5 Mon Sep 17 00:00:00 2001 From: Lucas Novoa Date: Tue, 11 Mar 2025 16:26:39 -0500 Subject: [PATCH] Change "exceptoin" spelling mistake to "exception" --- src/Illuminate/Queue/InteractsWithQueue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Queue/InteractsWithQueue.php b/src/Illuminate/Queue/InteractsWithQueue.php index 4caea95c9c81..850c7c1c54bc 100644 --- a/src/Illuminate/Queue/InteractsWithQueue.php +++ b/src/Illuminate/Queue/InteractsWithQueue.php @@ -185,7 +185,7 @@ public function assertFailedWith($exception) PHPUnit::assertEquals( $exception->getMessage(), $this->job->failedWith->getMessage(), - 'Expected exceptoin message ['.$exception->getMessage().'] but job failed with exception message ['.$this->job->failedWith->getMessage().'].'); + 'Expected exception message ['.$exception->getMessage().'] but job failed with exception message ['.$this->job->failedWith->getMessage().'].'); } return $this;