Skip to content

Commit 1599aae

Browse files
committed
Update health check endpoint in test
Changed the tested endpoint from '/api/health' to '/health' in HealthCheckTest to match the current route configuration.
1 parent ff79b62 commit 1599aae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Http/HealthCheckTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ protected function getPackageProviders($app)
1515
/** @test */
1616
public function health_endpoint_returns_200()
1717
{
18-
$response = $this->get('/api/health');
18+
$response = $this->get('/health');
1919

2020
$response->assertStatus(200)
2121
->assertJsonStructure([

0 commit comments

Comments
 (0)