Skip to content

Commit 6270f51

Browse files
committed
cs fix
1 parent 9c46eed commit 6270f51

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

tests/DatabaseHandlerTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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

tests/PredisHandlerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ public function testFailedAndKeepJob(): void
281281
$handler = new PredisHandler($this->config);
282282
$queueJob = $handler->pop('queue1', ['default']);
283283

284-
$err = new Exception('Sample exception');
284+
$err = new Exception('Sample exception');
285285
$this->assertInstanceOf(QueueJob::class, $queueJob);
286286
$result = $handler->failed($queueJob, $err, true);
287287

@@ -306,7 +306,7 @@ public function testFailedAndDontKeepJob(): void
306306
$handler = new PredisHandler($this->config);
307307
$queueJob = $handler->pop('queue1', ['default']);
308308

309-
$err = new Exception('Sample exception');
309+
$err = new Exception('Sample exception');
310310
$this->assertInstanceOf(QueueJob::class, $queueJob);
311311
$result = $handler->failed($queueJob, $err, false);
312312

tests/RedisHandlerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ public function testFailedAndKeepJob(): void
266266
$handler = new RedisHandler($this->config);
267267
$queueJob = $handler->pop('queue1', ['default']);
268268

269-
$err = new Exception('Sample exception');
269+
$err = new Exception('Sample exception');
270270
$this->assertInstanceOf(QueueJob::class, $queueJob);
271271
$result = $handler->failed($queueJob, $err, true);
272272

@@ -288,7 +288,7 @@ public function testFailedAndDontKeepJob(): void
288288
$handler = new RedisHandler($this->config);
289289
$queueJob = $handler->pop('queue1', ['default']);
290290

291-
$err = new Exception('Sample exception');
291+
$err = new Exception('Sample exception');
292292
$this->assertInstanceOf(QueueJob::class, $queueJob);
293293
$result = $handler->failed($queueJob, $err, false);
294294

0 commit comments

Comments
 (0)