forked from TrueCloudLab/distribution
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>
This commit is contained in:
parent
7a46b772ad
commit
633eec0f91
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue