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:
authorNick Thomas <nick@gitlab.com>2019-09-13 18:46:52 +0300
committerNick Thomas <nick@gitlab.com>2019-09-13 18:46:52 +0300
commitfc8f04d5fef6d36568f751e0ebb724a22959cb96 (patch)
tree4e80184def1dd2cca60c5cc2cd191fe9681bda9d /internal/logging/logging_test.go
parent75d00b984b3edd2832f28a1fa397bd7ad9e4bbbd (diff)
parent1198f4ee2f3f216cde7b318505f7ebdfe8d7e338 (diff)
Merge branch 'backstage/gb/rename-confusig-domain-struct' into 'master'1-9-stable
Rename confusing domain struct See merge request gitlab-org/gitlab-pages!184
Diffstat (limited to 'internal/logging/logging_test.go')
-rw-r--r--internal/logging/logging_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/logging/logging_test.go b/internal/logging/logging_test.go
index 8b49a413..32bd4603 100644
--- a/internal/logging/logging_test.go
+++ b/internal/logging/logging_test.go
@@ -15,19 +15,19 @@ func TestGetExtraLogFields(t *testing.T) {
name string
https bool
host string
- domain *domain.D
+ domain *domain.Domain
}{
{
name: "https",
https: true,
host: "githost.io",
- domain: &domain.D{},
+ domain: &domain.Domain{},
},
{
name: "http",
https: false,
host: "githost.io",
- domain: &domain.D{},
+ domain: &domain.Domain{},
},
{
name: "no_domain",