From 040b617bfef1ce4eb2184dc591d8d7142bf028a8 Mon Sep 17 00:00:00 2001 From: ia Date: Wed, 2 May 2018 19:54:42 +0900 Subject: [PATCH] solution: improve test error ln for descriptiveness --- crypto/crypto_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/crypto_test.go b/crypto/crypto_test.go index e3691715d..5e2beba51 100644 --- a/crypto/crypto_test.go +++ b/crypto/crypto_test.go @@ -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 {