Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and github-actions[bot] committed Jan 13, 2025
1 parent dfcc785 commit 2bb96fd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions tests/Http/Controllers/HealthCheckResultsControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
});

it('will run the checks when the run get parameter is passed and return the results as json', function () {
get('/?fresh')
->assertSuccessful()
->assertViewIs('health::list')
->assertSee($this->check->getLabel());
});
get('/?fresh')
->assertSuccessful()
->assertViewIs('health::list')
->assertSee($this->check->getLabel());
});
8 changes: 4 additions & 4 deletions tests/Http/Controllers/OhDearCheckResultsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@
});

it('will not display the results when the secret is wrong', function () {
get('my-url', ['oh-dear-health-check-secret' => 'wrong-secret'])->assertStatus(403);
});
get('my-url', ['oh-dear-health-check-secret' => 'wrong-secret'])->assertStatus(403);
});

it('will not display the results when the secret is missing', function () {
get('my-url')->assertStatus(403);
});
get('my-url')->assertStatus(403);
});

0 comments on commit 2bb96fd

Please sign in to comment.