Skip to content

Commit 9223cb5

Browse files
authored
Update HealthCheckTest.cs
1 parent 1741da7 commit 9223cb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BervProject.WebApi.Integration.Test/HealthCheckTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public HealthCheckTest(WebAppFixture webAppFixtures)
1515
public async Task SuccessCheck()
1616
{
1717
var client = _applicationFactory.CreateClient();
18-
var response = await client.GetAsync("/healthz");
18+
var response = await client.GetAsync("/health");
1919
Assert.True(response.IsSuccessStatusCode);
2020
var stringResponse = await response.Content.ReadAsStringAsync();
2121
Assert.Equal("Healthy", stringResponse);

0 commit comments

Comments
 (0)