Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
johnml1135 committed Jan 16, 2024
1 parent 82f9049 commit dee6c51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Serval.ApiServer.IntegrationTests/StatusTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public async Task GetHealthAsync(IEnumerable<string> scope, int expectedStatusCo
HealthReport healthReport = await client.GetHealthAsync();
Assert.That(healthReport, Is.Not.Null);
Assert.That(healthReport.Status.ToString(), Is.Not.EqualTo("Healthy"));
Assert.That(healthReport.Results, Has.Count.EqualTo(5));
Assert.That(healthReport.Results, Has.Count.EqualTo(6));
break;
case 403:
ex = Assert.ThrowsAsync<ServalApiException>(async () =>
Expand Down

0 comments on commit dee6c51

Please sign in to comment.