builder/vmware/iso: fix incorrect printf verb type in test

Fixes the following vet report:

builder/vmware/iso/builder_test.go:178: arg b.config.DiskSize for printf verb %s of wrong type: uint
This commit is contained in:
Emil Hessman 2014-12-15 19:27:17 +01:00
parent fdb64f6f25
commit 57468b3d1a
1 changed files with 1 additions and 1 deletions

View File

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