Commit 736694e6 authored by stewart-yu's avatar stewart-yu

fix wrong output in e2e log

parent 0c1f9336
...@@ -1395,7 +1395,7 @@ func createFileDoesntExistCmd(testFileDir string, testFile string) string { ...@@ -1395,7 +1395,7 @@ func createFileDoesntExistCmd(testFileDir string, testFile string) string {
// Fail on error // Fail on error
func podRWCmdExec(pod *v1.Pod, cmd string) string { func podRWCmdExec(pod *v1.Pod, cmd string) string {
out, err := utils.PodExec(pod, cmd) out, err := utils.PodExec(pod, cmd)
framework.Logf("podRWCmdExec out: %q err: %q", out, err) framework.Logf("podRWCmdExec out: %q err: %v", out, err)
Expect(err).NotTo(HaveOccurred()) Expect(err).NotTo(HaveOccurred())
return out return out
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment