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/gitaly/storage/servers_test.go')
-rw-r--r--internal/gitaly/storage/servers_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/gitaly/storage/servers_test.go b/internal/gitaly/storage/servers_test.go
index 5c6def8da..f10666828 100644
--- a/internal/gitaly/storage/servers_test.go
+++ b/internal/gitaly/storage/servers_test.go
@@ -81,6 +81,8 @@ func TestInjectGitalyServers(t *testing.T) {
}
t.Run("brand new context", func(t *testing.T) {
+ //nolint:forbidigo // We need to check for metadata and thus cannot use the
+ // testhelper context, which injects feature flags.
ctx := context.Background()
check(t, ctx)
@@ -89,6 +91,8 @@ func TestInjectGitalyServers(t *testing.T) {
t.Run("context with existing outgoing metadata should not be re-written", func(t *testing.T) {
existing := metadata.New(map[string]string{"foo": "bar"})
+ //nolint:forbidigo // We need to check for metadata and thus cannot use the
+ // testhelper context, which injects feature flags.
ctx := metadata.NewOutgoingContext(context.Background(), existing)
check(t, ctx)