Remove unnecessary error pointer formats in test

The linter was complaining about these and they are quite unnecessary.
This commit is contained in:
Stephen Day 2015-03-18 19:02:32 -07:00
parent d957768537
commit 2ced84f31d

View file

@ -80,7 +80,7 @@ func TestVerifierUnsupportedDigest(t *testing.T) {
}
if err != ErrDigestUnsupported {
t.Fatalf("incorrect error for unsupported digest: %v %p %p", err, ErrDigestUnsupported, err)
t.Fatalf("incorrect error for unsupported digest: %v", err)
}
}