chore: correct sftp.args sanitize test expectation to keep wrapping single quotes

This commit is contained in:
garethgeorge
2026-07-08 00:26:14 -07:00
parent 58b83c0d4b
commit fa379bb258
+1 -1
View File
@@ -1444,7 +1444,7 @@ func TestSanitizeRepoFlags(t *testing.T) {
{
name: "mixed flags only sftp.args modified",
flags: []string{`--option=other=val`, `--option=sftp.args='-i "/path/key"'`},
want: []string{`--option=other=val`, `--option=sftp.args=-i /path/key`},
want: []string{`--option=other=val`, `--option=sftp.args='-i /path/key'`},
},
}