Skip to content

Commit

Permalink
Remove unnecessary error pointer formats in test
Browse files Browse the repository at this point in the history
The linter was complaining about these and they are quite unnecessary.
  • Loading branch information
stevvooe committed Mar 19, 2015
1 parent 1d0603a commit 0fd5e24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion verifiers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}

Expand Down

0 comments on commit 0fd5e24

Please sign in to comment.