X Tutup
Skip to content

Commit a5ec03d

Browse files
committed
Improve test args
1 parent 487b62d commit a5ec03d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/cmd/repo/clone/clone_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ func Test_RepoClone(t *testing.T) {
8686
},
8787
{
8888
name: "Non-canonical capitalization",
89-
args: "git@github.com:Ower/Repo.git",
90-
want: "git clone git@github.com:OWNER/REPO.git",
89+
args: "Owner/Repo",
90+
want: "git clone https://github.com/OWNER/REPO.git",
9191
},
9292
}
9393
for _, tt := range tests {

0 commit comments

Comments
 (0)
X Tutup