feat: add healthcheck database section (#8060)

This commit is contained in:
Colin Adler
2023-06-20 10:13:22 -05:00
committed by GitHub
parent 2db4488337
commit 823127e761
11 changed files with 284 additions and 12 deletions

View File

@ -28,7 +28,7 @@ func TestAccessURL(t *testing.T) {
)
defer cancel()
report.Run(ctx, &healthcheck.AccessURLOptions{
report.Run(ctx, &healthcheck.AccessURLReportOptions{
AccessURL: client.URL,
})
@ -57,7 +57,7 @@ func TestAccessURL(t *testing.T) {
u, err := url.Parse(srv.URL)
require.NoError(t, err)
report.Run(ctx, &healthcheck.AccessURLOptions{
report.Run(ctx, &healthcheck.AccessURLReportOptions{
Client: srv.Client(),
AccessURL: u,
})
@ -93,7 +93,7 @@ func TestAccessURL(t *testing.T) {
u, err := url.Parse(srv.URL)
require.NoError(t, err)
report.Run(ctx, &healthcheck.AccessURLOptions{
report.Run(ctx, &healthcheck.AccessURLReportOptions{
Client: client,
AccessURL: u,
})