builder/parallels/iso: fix incorrect printf verb type

Fixes the following vet report:

builder/parallels/iso/builder_test.go:78: arg b.config.DiskSize for printf verb %s of wrong type: uint
This commit is contained in:
Emil Hessman 2014-12-15 19:20:13 +01:00
parent f5782084e5
commit b19f9b9777
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ func TestBuilderPrepare_DiskSize(t *testing.T) {
}
if b.config.DiskSize != 60000 {
t.Fatalf("bad size: %s", b.config.DiskSize)
t.Fatalf("bad size: %d", b.config.DiskSize)
}
}