@@ -367,7 +367,7 @@ public function testFailedAndKeepJob(): void
367367 $ handler = new DatabaseHandler ($ this ->config );
368368 $ queueJob = $ handler ->pop ('queue1 ' , ['default ' ]);
369369
370- $ err = new Exception ('Sample exception ' );
370+ $ err = new Exception ('Sample exception ' );
371371 $ this ->assertInstanceOf (QueueJob::class, $ queueJob );
372372 $ result = $ handler ->failed ($ queueJob , $ err , true );
373373
@@ -388,7 +388,7 @@ public function testFailedAndDontKeepJob(): void
388388 $ handler = new DatabaseHandler ($ this ->config );
389389 $ queueJob = $ handler ->pop ('queue1 ' , ['default ' ]);
390390
391- $ err = new Exception ('Sample exception ' );
391+ $ err = new Exception ('Sample exception ' );
392392 $ this ->assertInstanceOf (QueueJob::class, $ queueJob );
393393 $ result = $ handler ->failed ($ queueJob , $ err , false );
394394
@@ -480,7 +480,7 @@ public function testFlush(): void
480480 $ handler = new DatabaseHandler ($ this ->config );
481481 $ queueJob = $ handler ->pop ('queue1 ' , ['default ' ]);
482482
483- $ err = new Exception ('Sample exception here ' );
483+ $ err = new Exception ('Sample exception here ' );
484484 $ this ->assertInstanceOf (QueueJob::class, $ queueJob );
485485 $ result = $ handler ->failed ($ queueJob , $ err , true );
486486
0 commit comments