Skip to content

Commit de1bd28

Browse files
committed
Merge pull request #1191 from timstclair/e2e-errors
Don't escape e2e test command output in error messages
2 parents 05a1d7d + b90878f commit de1bd28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration/runner/runner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func getAttributes(ipAddress, portStr string) (*cadvisorApi.Attributes, error) {
7575
func RunCommand(cmd string, args ...string) error {
7676
output, err := exec.Command(cmd, args...).CombinedOutput()
7777
if err != nil {
78-
return fmt.Errorf("command %q %q failed with error: %v and output: %q", cmd, args, err, output)
78+
return fmt.Errorf("command %q %q failed with error: %v and output: %v", cmd, args, err, output)
7979
}
8080

8181
return nil

0 commit comments

Comments
 (0)