aboutsummaryrefslogtreecommitdiff
path: root/keys_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'keys_test.go')
-rw-r--r--keys_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/keys_test.go b/keys_test.go
index c9d6d1e..06a3730 100644
--- a/keys_test.go
+++ b/keys_test.go
@@ -11,7 +11,7 @@ func TestUnmarshalSig(t *testing.T) {
DecodeBase64(v, b64sig)
out, _ := EncodeBase64(v)
if !bytes.Equal(b64sig, out) {
- t.Errorf("expected %v, got %v", b64sig, out)
+ t.Errorf("want %v, got %v", b64sig, out)
}
}
@@ -21,7 +21,7 @@ func TestUnmarshalPub(t *testing.T) {
DecodeBase64(v, b64pub)
out, _ := EncodeBase64(v)
if !bytes.Equal(b64pub, out) {
- t.Errorf("expected %v, got %v", b64pub, out)
+ t.Errorf("want %v, got %v", b64pub, out)
}
}
@@ -31,6 +31,6 @@ func TestUnmarshalEnc(t *testing.T) {
DecodeBase64(v, b64enc)
out, _ := EncodeBase64(v)
if !bytes.Equal(b64enc, out) {
- t.Errorf("expected %v, got %v", b64enc, out)
+ t.Errorf("want %v, got %v", b64enc, out)
}
}