builder/vmware/common: fix missing format argument for Fatalf call in test

Fixes the following vet report:

builder/vmware/common/step_shutdown_test.go:130: missing argument for Fatalf("%s"): format reads arg 1, have only 0 args
This commit is contained in:
Emil Hessman 2014-12-15 19:25:25 +01:00
parent 96b62af551
commit fdb64f6f25
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ func TestStepShutdown_locks(t *testing.T) {
lockPath := filepath.Join(dir.dir, "nope.lck")
err := ioutil.WriteFile(lockPath, []byte("foo"), 0644)
if err != nil {
t.Fatalf("err: %s")
t.Fatalf("err: %s", err)
}
// Remove the lock file after a certain time