Skip to content

Commit

Permalink
Fix failing tests, closes #12
Browse files Browse the repository at this point in the history
  • Loading branch information
rednafi committed Feb 1, 2024
1 parent 620da4f commit e80c5db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ func TestCheckLink_InvalidLink(t *testing.T) {
t.Parallel()
lr := checkLink(":%", 1*time.Second)

assert.Equal(t, 0, "Status code should be 0", lr.StatusCode)
assert.Equal(t, 0, lr.StatusCode, "Status code should be 0")
assert.Equal(t, "parse \":%\": missing protocol scheme", lr.Message)
}

Expand Down

0 comments on commit e80c5db

Please sign in to comment.