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>
| ... | ... |
@@ -493,7 +493,7 @@ func TestTarWithBlockCharFifo(t *testing.T) {
|
| 493 | 493 |
t.Fatal(err) |
| 494 | 494 |
} |
| 495 | 495 |
if len(changes) > 0 {
|
| 496 |
- t.Fatalf("Tar with special device (block, char, fifo) should keep them (recreate them when untar) : %s", changes)
|
|
| 496 |
+ t.Fatalf("Tar with special device (block, char, fifo) should keep them (recreate them when untar) : %v", changes)
|
|
| 497 | 497 |
} |
| 498 | 498 |
} |
| 499 | 499 |
|