Commit b73b5bc9 authored by Mikalai Radchuk's avatar Mikalai Radchuk

Fixes error message in e2e tests

parent 8307fb2f
......@@ -184,7 +184,7 @@ func runPortForward(ns, podName string, port int) *portForwardCommand {
listenPort, err := strconv.Atoi(match[2])
if err != nil {
framework.Failf("Error converting %s to an int: %v", match[1], err)
framework.Failf("Error converting %s to an int: %v", match[2], err)
}
return &portForwardCommand{
......
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