We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 483e23b + 498e5b2 commit d0bedc5Copy full SHA for d0bedc5
1 file changed
integration/common.go
@@ -58,12 +58,12 @@ func initImages(imageListFile string) {
58
if imageListFile != "" {
59
fileContent, err := ioutil.ReadFile(imageListFile)
60
if err != nil {
61
- panic(fmt.Errorf("Error reading '%v' file contents: %v", imageList, err))
+ panic(fmt.Errorf("error reading '%v' file contents: %v", imageList, err))
62
}
63
64
err = toml.Unmarshal(fileContent, &imageList)
65
66
- panic(fmt.Errorf("Error unmarshalling '%v' TOML file: %v", imageList, err))
+ panic(fmt.Errorf("error unmarshalling '%v' TOML file: %v", imageList, err))
67
68
69
0 commit comments