From b90878fcb1a510335af40682344b312b1538eae4 Mon Sep 17 00:00:00 2001 From: "Tim St. Clair" Date: Tue, 5 Apr 2016 10:39:12 -0700 Subject: [PATCH] Don't escape e2e test command output in error messages --- integration/runner/runner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/runner/runner.go b/integration/runner/runner.go index 3b3e125e..97d56a06 100644 --- a/integration/runner/runner.go +++ b/integration/runner/runner.go @@ -75,7 +75,7 @@ func getAttributes(ipAddress, portStr string) (*cadvisorApi.Attributes, error) { func RunCommand(cmd string, args ...string) error { output, err := exec.Command(cmd, args...).CombinedOutput() if err != nil { - return fmt.Errorf("command %q %q failed with error: %v and output: %q", cmd, args, err, output) + return fmt.Errorf("command %q %q failed with error: %v and output: %v", cmd, args, err, output) } return nil