Fix vet warning
pkg/archive/archive_test.go:496: arg changes for printf verb %s of wrong type: []archive.Change Signed-off-by: Alexander Morozov <lk4d4@docker.com>
This commit is contained in:
parent
a07cb3c4e6
commit
2f1072efe0
1 changed files with 1 additions and 1 deletions
|
@ -493,7 +493,7 @@ func TestTarWithBlockCharFifo(t *testing.T) {
|
|||
t.Fatal(err)
|
||||
}
|
||||
if len(changes) > 0 {
|
||||
t.Fatalf("Tar with special device (block, char, fifo) should keep them (recreate them when untar) : %s", changes)
|
||||
t.Fatalf("Tar with special device (block, char, fifo) should keep them (recreate them when untar) : %v", changes)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue