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/git/ssh_test.go')
-rw-r--r--internal/git/ssh_test.go7
1 files changed, 2 insertions, 5 deletions
diff --git a/internal/git/ssh_test.go b/internal/git/ssh_test.go
index 201b9fc3a..cdf799b9c 100644
--- a/internal/git/ssh_test.go
+++ b/internal/git/ssh_test.go
@@ -1,7 +1,6 @@
package git
import (
- "io/ioutil"
"path/filepath"
"regexp"
"testing"
@@ -59,8 +58,7 @@ func TestBuildSSHInvocation(t *testing.T) {
expectedCommand := "ssh"
if tc.sshKey != "" {
- content, err := ioutil.ReadFile(sshKeyPath)
- require.NoError(t, err)
+ content := testhelper.MustReadFile(t, sshKeyPath)
require.Equal(t, tc.sshKey, string(content))
expectedCommand += " -oIdentitiesOnly=yes -oIdentityFile=" + sshKeyPath
} else {
@@ -68,8 +66,7 @@ func TestBuildSSHInvocation(t *testing.T) {
}
if tc.knownHosts != "" {
- content, err := ioutil.ReadFile(knownHostsPath)
- require.NoError(t, err)
+ content := testhelper.MustReadFile(t, knownHostsPath)
require.Equal(t, tc.knownHosts, string(content))
expectedCommand += " -oStrictHostKeyChecking=yes -oCheckHostIP=no -oUserKnownHostsFile=" + knownHostsPath
} else {