aboutsummaryrefslogtreecommitdiff
path: root/keys_test.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2017-04-13 23:20:54 +0200
committerDimitri Sokolyuk <demon@dim13.org>2017-04-13 23:20:54 +0200
commita1d8443b3291dbd660bcd323470fb2d28673c01a (patch)
treea72353773dd1d4e33ba72384d2ca26d69020719b /keys_test.go
parentc1f395859db2a2352df0985cbbaa021f1e7fbe9c (diff)
subtests
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)
}
}