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:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2021-07-22 15:16:20 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-07-22 15:16:20 +0300
commite34f3dcf14476c7f5e77adee029ce0888705f8c2 (patch)
treeed5ec72f4bf3dad52a21ed25ad430315e0f67fe8 /internal/backup/backup_test.go
parent25996451d3861a201f0055bff193ab4f984cf84f (diff)
storage: Move module into `internal/gitaly`
Except for a single use in Praefec's tests, the "storage" module is only used by Gitaly. Despite that, it's still located at `internal/storage` and thus indicates that it may be a generic component for reuse. Move it into `internal/gitaly` to clarify that it is indeed an implementation detail of Gitaly, only.
Diffstat (limited to 'internal/backup/backup_test.go')
-rw-r--r--internal/backup/backup_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/backup/backup_test.go b/internal/backup/backup_test.go
index 0eb70eb47..d1c67419f 100644
--- a/internal/backup/backup_test.go
+++ b/internal/backup/backup_test.go
@@ -10,7 +10,7 @@ import (
"github.com/stretchr/testify/require"
"gitlab.com/gitlab-org/gitaly/v14/internal/git/gittest"
"gitlab.com/gitlab-org/gitaly/v14/internal/gitaly/service/setup"
- "gitlab.com/gitlab-org/gitaly/v14/internal/storage"
+ "gitlab.com/gitlab-org/gitaly/v14/internal/gitaly/storage"
"gitlab.com/gitlab-org/gitaly/v14/internal/testhelper"
"gitlab.com/gitlab-org/gitaly/v14/internal/testhelper/testcfg"
"gitlab.com/gitlab-org/gitaly/v14/internal/testhelper/testserver"