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 'client/dial_test.go')
-rw-r--r--client/dial_test.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/client/dial_test.go b/client/dial_test.go
index f958fc13c..f488a3ede 100644
--- a/client/dial_test.go
+++ b/client/dial_test.go
@@ -128,8 +128,9 @@ func TestDial(t *testing.T) {
}
if tt.envSSLCertFile != "" {
- testhelper.ModifyEnvironment(t, gitalyx509.SSLCertFile, tt.envSSLCertFile)
+ t.Setenv(gitalyx509.SSLCertFile, tt.envSSLCertFile)
}
+
ctx := testhelper.Context(t)
conn, err := Dial(tt.rawAddress, tt.dialOpts)
@@ -216,8 +217,9 @@ func TestDialSidechannel(t *testing.T) {
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if tt.envSSLCertFile != "" {
- testhelper.ModifyEnvironment(t, gitalyx509.SSLCertFile, tt.envSSLCertFile)
+ t.Setenv(gitalyx509.SSLCertFile, tt.envSSLCertFile)
}
+
ctx := testhelper.Context(t)
conn, err := DialSidechannel(ctx, tt.rawAddress, registry, tt.dialOpts)