Skip to content
This repository has been archived by the owner on Oct 4, 2019. It is now read-only.

Commit

Permalink
solution: improve test error ln for descriptiveness
Browse files Browse the repository at this point in the history
  • Loading branch information
whilei committed May 2, 2018
1 parent 876296f commit 040b617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/crypto_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func TestSign(t *testing.T) {
t.Errorf("Sign error: %s", err)
}
if len(sig) != 65 {
t.Error("wrong len sig", len(sig))
t.Error("wrong signature length", len(sig))
}
recoveredPub, err := Ecrecover(msg, sig)
if err != nil {
Expand Down

0 comments on commit 040b617

Please sign in to comment.