diff --git a/integration/common.go b/integration/common.go index 8d7b687a7..0b0804e92 100644 --- a/integration/common.go +++ b/integration/common.go @@ -58,12 +58,12 @@ func initImages(imageListFile string) { if imageListFile != "" { fileContent, err := ioutil.ReadFile(imageListFile) if err != nil { - panic(fmt.Errorf("Error reading '%v' file contents: %v", imageList, err)) + panic(fmt.Errorf("error reading '%v' file contents: %v", imageList, err)) } err = toml.Unmarshal(fileContent, &imageList) if err != nil { - panic(fmt.Errorf("Error unmarshalling '%v' TOML file: %v", imageList, err)) + panic(fmt.Errorf("error unmarshalling '%v' TOML file: %v", imageList, err)) } }