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:
parent
fdb64f6f25
commit
57468b3d1a
|
@ -175,7 +175,7 @@ func TestBuilderPrepare_DiskSize(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if b.config.DiskSize != 60000 {
|
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