diff --git a/lfsapi/ssh_test.go b/lfsapi/ssh_test.go index ab70983c..ec01bf9a 100644 --- a/lfsapi/ssh_test.go +++ b/lfsapi/ssh_test.go @@ -188,7 +188,7 @@ func TestSSHGetExeAndArgsSshCommandArgsWithMixedQuotes(t *testing.T) { exe, args := sshGetExeAndArgs(cli.OSEnv(), endpoint) assert.Equal(t, "sshcmd", exe) - assert.Equal(t, []string{"foo", "'bar \"baz\"'", "user@foo.com"}, args) + assert.Equal(t, []string{"foo", `bar "baz"`, "user@foo.com"}, args) } func TestSSHGetExeAndArgsSshCommandCustomPort(t *testing.T) {