Improve test args

This commit is contained in:
Jonathan Lloyd 2020-10-12 23:56:51 +01:00
parent 487b62d3b9
commit a5ec03d000

View file

@ -86,8 +86,8 @@ func Test_RepoClone(t *testing.T) {
},
{
name: "Non-canonical capitalization",
args: "git@github.com:Ower/Repo.git",
want: "git clone git@github.com:OWNER/REPO.git",
args: "Owner/Repo",
want: "git clone https://github.com/OWNER/REPO.git",
},
}
for _, tt := range tests {