Fix vet issue

registry/storage/blob_test.go:149: arg d for printf verb %s of wrong type: github.com/docker/distribution.Descriptor

Signed-off-by: Doug Davis <dug@us.ibm.com>
master
Doug Davis 2015-07-31 14:51:48 -07:00
parent 7a46b772ad
commit 633eec0f91
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ func TestSimpleBlobUpload(t *testing.T) {
d, err := bs.Stat(ctx, desc.Digest)
if err == nil {
t.Fatalf("unexpected non-error stating deleted blob: %s", d)
t.Fatalf("unexpected non-error stating deleted blob: %v", d)
}
switch err {