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 'internal/request/request_test.go')
-rw-r--r--internal/request/request_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/request/request_test.go b/internal/request/request_test.go
index afb40142..e092448b 100644
--- a/internal/request/request_test.go
+++ b/internal/request/request_test.go
@@ -41,17 +41,17 @@ func TestWithHostAndDomain(t *testing.T) {
tests := []struct {
name string
host string
- domain *domain.D
+ domain *domain.Domain
}{
{
name: "values",
host: "gitlab.com",
- domain: &domain.D{},
+ domain: &domain.Domain{},
},
{
name: "no_host",
host: "",
- domain: &domain.D{},
+ domain: &domain.Domain{},
},
}
for _, tt := range tests {