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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2019-09-12 13:00:22 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2019-09-13 10:42:22 +0300
commit1198f4ee2f3f216cde7b318505f7ebdfe8d7e338 (patch)
tree6a7fed36f4725894c835a5c56cdd0677de812dac /internal/logging
parentdd802698dba879ef5eeeb7b4f4abd03364f3788f (diff)
Rename confusing domain struct from D to Domain
Diffstat (limited to 'internal/logging')
-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",