Skip to content

Commit 498e5b2

Browse files
author
Zilong Wang
committed
fix error string format
Signed-off-by: zilong.wang <[email protected]>
1 parent 3d734d0 commit 498e5b2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

integration/common.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ func initImages(imageListFile string) {
5858
if imageListFile != "" {
5959
fileContent, err := ioutil.ReadFile(imageListFile)
6060
if err != nil {
61-
panic(fmt.Errorf("Error reading '%v' file contents: %v", imageList, err))
61+
panic(fmt.Errorf("error reading '%v' file contents: %v", imageList, err))
6262
}
6363

6464
err = toml.Unmarshal(fileContent, &imageList)
6565
if err != nil {
66-
panic(fmt.Errorf("Error unmarshalling '%v' TOML file: %v", imageList, err))
66+
panic(fmt.Errorf("error unmarshalling '%v' TOML file: %v", imageList, err))
6767
}
6868
}
6969

0 commit comments

Comments
 (0)