From 952ae5161bf80cd2590edd72ee0743f7446c3185 Mon Sep 17 00:00:00 2001 From: Emil Hessman Date: Mon, 15 Dec 2014 19:51:55 +0100 Subject: [PATCH] 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 --- common/step_create_floppy_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/step_create_floppy_test.go b/common/step_create_floppy_test.go index b6e591a41..d1a3000a7 100644 --- a/common/step_create_floppy_test.go +++ b/common/step_create_floppy_test.go @@ -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) } } }