mirror of
https://github.com/go-gitea/gitea.git
synced 2026-07-26 20:11:31 +02:00
skip err check
This commit is contained in:
@@ -54,8 +54,7 @@ func TestNormalizeSSHURL(t *testing.T) {
|
||||
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
result, err := normalizeSSHURL(tt.input)
|
||||
assert.NoError(t, err)
|
||||
result, _ := normalizeSSHURL(tt.input)
|
||||
assert.Equal(t, tt.expected, result)
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user