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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/helper/storage_test.go')
-rw-r--r--internal/helper/storage_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/helper/storage_test.go b/internal/helper/storage_test.go
index 1e50e04cd..44e49b218 100644
--- a/internal/helper/storage_test.go
+++ b/internal/helper/storage_test.go
@@ -41,7 +41,7 @@ func TestExtractGitalyServers(t *testing.T) {
{
desc: "properly-encoded string",
metadata: metadata.Pairs("gitaly-servers", base64.StdEncoding.EncodeToString([]byte(`{"default":{"address":"unix:///tmp/sock","token":"hunter1"}}`))),
- info: storage.GitalyServers{"default": {"address": "unix:///tmp/sock", "token": "hunter1"}},
+ info: storage.GitalyServers{"default": storage.ServerInfo{Address: "unix:///tmp/sock", Token: "hunter1"}},
},
}