builder/qemu: fix incorrect printf verb type

Fixes the following vet report:

builder/qemu/builder_test.go:163: arg b.config.DiskSize for printf verb %s of wrong type: uint
This commit is contained in:
Emil Hessman 2014-12-15 19:21:45 +01:00
parent b19f9b9777
commit cceb4b2868
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,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)
}
}