diff options
author | Clar Fon <usr@ltdk.xyz> | 2022-02-07 16:56:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-07 16:56:45 -0500 |
commit | 99d14f6051854fe0e6dfc7fb6f4eb0a839179977 (patch) | |
tree | 746cd4e72854e696c87f017c9238f510f826879b /integrations | |
parent | 9911b66aea076347cfb271b12c90bc31e4e5b5f8 (diff) | |
download | gitea-99d14f6051854fe0e6dfc7fb6f4eb0a839179977.tar.gz gitea-99d14f6051854fe0e6dfc7fb6f4eb0a839179977.zip |
Add separate SSH_USER config option (#17584)
Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'integrations')
-rw-r--r-- | integrations/repo_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integrations/repo_test.go b/integrations/repo_test.go index 8c4cdf5a96..677ba57f80 100644 --- a/integrations/repo_test.go +++ b/integrations/repo_test.go @@ -135,7 +135,7 @@ func TestViewRepo1CloneLinkAuthorized(t *testing.T) { assert.Equal(t, setting.AppURL+"user2/repo1.git", link) link, exists = htmlDoc.doc.Find("#repo-clone-ssh").Attr("data-link") assert.True(t, exists, "The template has changed") - sshURL := fmt.Sprintf("ssh://%s@%s:%d/user2/repo1.git", setting.SSH.BuiltinServerUser, setting.SSH.Domain, setting.SSH.Port) + sshURL := fmt.Sprintf("ssh://%s@%s:%d/user2/repo1.git", setting.SSH.User, setting.SSH.Domain, setting.SSH.Port) assert.Equal(t, sshURL, link) } |