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/clone_from_pool_test.go')
-rw-r--r--internal/service/repository/clone_from_pool_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/service/repository/clone_from_pool_test.go b/internal/service/repository/clone_from_pool_test.go
index e51bffad0..a7b5d3ae4 100644
--- a/internal/service/repository/clone_from_pool_test.go
+++ b/internal/service/repository/clone_from_pool_test.go
@@ -6,6 +6,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
+ "gitlab.com/gitlab-org/gitaly/internal/config"
"gitlab.com/gitlab-org/gitaly/internal/git/gittest"
"gitlab.com/gitlab-org/gitaly/internal/service/repository"
"gitlab.com/gitlab-org/gitaly/internal/testhelper"
@@ -14,7 +15,7 @@ import (
)
func TestCloneFromPoolHTTP(t *testing.T) {
- server, serverSocketPath := runFullServer(t)
+ server, serverSocketPath := runFullServer(t, config.Config.Storages)
defer server.Stop()
ctxOuter, cancel := testhelper.Context()