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
9dac3cc571
commit
54f0c70d88
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)
|
d, err := bs.Stat(ctx, desc.Digest)
|
||||||
if err == nil {
|
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 {
|
switch err {
|
||||||
|
|
Loading…
Reference in a new issue