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/service/repository/info_attributes_test.go')
-rw-r--r--internal/service/repository/info_attributes_test.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/internal/service/repository/info_attributes_test.go b/internal/service/repository/info_attributes_test.go
index 86096dc03..cb1c4c538 100644
--- a/internal/service/repository/info_attributes_test.go
+++ b/internal/service/repository/info_attributes_test.go
@@ -8,13 +8,14 @@ import (
"testing"
"github.com/stretchr/testify/require"
+ "gitlab.com/gitlab-org/gitaly/internal/config"
"gitlab.com/gitlab-org/gitaly/internal/testhelper"
"gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
"gitlab.com/gitlab-org/gitaly/streamio"
)
func TestGetInfoAttributesExisting(t *testing.T) {
- serverSocketPath, stop := runRepoServer(t)
+ serverSocketPath, stop := runRepoServer(t, config.Config.Storages)
defer stop()
client, conn := newRepositoryClient(t, serverSocketPath)
@@ -49,7 +50,7 @@ func TestGetInfoAttributesExisting(t *testing.T) {
}
func TestGetInfoAttributesNonExisting(t *testing.T) {
- serverSocketPath, stop := runRepoServer(t)
+ serverSocketPath, stop := runRepoServer(t, config.Config.Storages)
defer stop()
client, conn := newRepositoryClient(t, serverSocketPath)