Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
kudashevs authored and github-actions[bot] committed Dec 13, 2022
1 parent f4a0505 commit 39a87cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Checks/HorizonCheckTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
expect($result)
->status->toBe(Status::failed())
->notificationMessage->toBe('Horizon is not running.');
})->skip(fn() => extension_loaded('redis') !== true, 'The redis extension is not loaded.');;
})->skip(fn () => extension_loaded('redis') !== true, 'The redis extension is not loaded.');

it('will send a warning when horizon is paused', function () {
$this->fakeHorizonStatus('paused');
Expand Down
2 changes: 1 addition & 1 deletion tests/Checks/RedisCheckTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
$result = RedisCheck::new()->run();

expect($result->status)->toBe(Status::ok());
})->skip(fn() => extension_loaded('redis') !== true, 'The redis extension is not loaded.');
})->skip(fn () => extension_loaded('redis') !== true, 'The redis extension is not loaded.');

it('will return an error when it cannot connect to Redis', function () {
$result = FakeRedisCheck::new()
Expand Down

0 comments on commit 39a87cc

Please sign in to comment.