Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app_test.go')
-rw-r--r--app_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/app_test.go b/app_test.go
index b7e9a01c..48c981cf 100644
--- a/app_test.go
+++ b/app_test.go
@@ -84,7 +84,8 @@ func TestHealthCheckMiddleware(t *testing.T) {
},
}
- cfg := config.LoadConfig()
+ cfg, err := config.LoadConfig()
+ require.NoError(t, err)
cfg.General.StatusPath = "/-/healthcheck"
cfg.General.DomainConfigurationSource = "auto"