mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-20 06:51:39 -04:00
common: fix formatting directives in tests
Fixes the following vet reports: common/step_create_floppy_test.go:79: possible formatting directive in Fatal call common/step_create_floppy_test.go:89: possible formatting directive in Fatal call common/step_create_floppy_test.go:180: possible formatting directive in Fatal call common/step_create_floppy_test.go:190: possible formatting directive in Fatal call
This commit is contained in:
@@ -76,7 +76,7 @@ func TestStepCreateFloppy(t *testing.T) {
|
||||
floppy_path := state.Get("floppy_path").(string)
|
||||
|
||||
if _, err := os.Stat(floppy_path); err != nil {
|
||||
t.Fatal("file not found: %s for %v", floppy_path, step.Files)
|
||||
t.Fatalf("file not found: %s for %v", floppy_path, step.Files)
|
||||
}
|
||||
|
||||
if len(step.FilesAdded) != expected {
|
||||
@@ -86,7 +86,7 @@ func TestStepCreateFloppy(t *testing.T) {
|
||||
step.Cleanup(state)
|
||||
|
||||
if _, err := os.Stat(floppy_path); err == nil {
|
||||
t.Fatal("file found: %s for %v", floppy_path, step.Files)
|
||||
t.Fatalf("file found: %s for %v", floppy_path, step.Files)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -177,7 +177,7 @@ func xxxTestStepCreateFloppy_notfound(t *testing.T) {
|
||||
floppy_path := state.Get("floppy_path").(string)
|
||||
|
||||
if _, err := os.Stat(floppy_path); err != nil {
|
||||
t.Fatal("file not found: %s for %v", floppy_path, step.Files)
|
||||
t.Fatalf("file not found: %s for %v", floppy_path, step.Files)
|
||||
}
|
||||
|
||||
if len(step.FilesAdded) != expected {
|
||||
@@ -187,7 +187,7 @@ func xxxTestStepCreateFloppy_notfound(t *testing.T) {
|
||||
step.Cleanup(state)
|
||||
|
||||
if _, err := os.Stat(floppy_path); err == nil {
|
||||
t.Fatal("file found: %s for %v", floppy_path, step.Files)
|
||||
t.Fatalf("file found: %s for %v", floppy_path, step.Files)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user