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.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/app_test.go b/app_test.go
index 1414623a..b7e9a01c 100644
--- a/app_test.go
+++ b/app_test.go
@@ -89,10 +89,10 @@ func TestHealthCheckMiddleware(t *testing.T) {
cfg.General.DomainConfigurationSource = "auto"
app := theApp{
- Config: cfg,
+ config: cfg,
}
- domains, err := source.NewDomains(app.Config)
+ domains, err := source.NewDomains(app.config)
require.NoError(t, err)
app.domains = domains