Fix errors in test failure messages.

This commit is contained in:
Elliott Sales de Andrade
2018-01-24 23:25:29 -05:00
parent ff14e82ec6
commit 48a741f106
2 changed files with 2 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ func TestNtlmV1ExtendedSessionSecurity(t *testing.T) {
context.SetServerChallenge(c.ServerChallenge)
err = context.ProcessAuthenticateMessage(msg)
if err == nil {
t.Errorf("This message should have failed to authenticate, but it passed", err)
t.Error("This message should have failed to authenticate, but it passed")
}
}