Skip to content

Commit 95af679

Browse files
skip err check
1 parent 8347926 commit 95af679

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

modules/git/remote_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ func TestNormalizeSSHURL(t *testing.T) {
5454

5555
for _, tt := range tests {
5656
t.Run(tt.name, func(t *testing.T) {
57-
result, err := normalizeSSHURL(tt.input)
58-
assert.NoError(t, err)
57+
result, _ := normalizeSSHURL(tt.input)
5958
assert.Equal(t, tt.expected, result)
6059
})
6160
}

0 commit comments

Comments
 (0)