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:
parent
b19f9b9777
commit
cceb4b2868
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue