Commit 64e914b8 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #32365 from lojies/addporttokubectl

Automatic merge from submit-queue add targetport to framework.Failf() add target port value to framework.Failf()
parents 4b7c44b7 fe6359b9
...@@ -696,7 +696,7 @@ var _ = framework.KubeDescribe("Kubectl client", func() { ...@@ -696,7 +696,7 @@ var _ = framework.KubeDescribe("Kubectl client", func() {
framework.Failf("Wrong service port: %d", port.Port) framework.Failf("Wrong service port: %d", port.Port)
} }
if port.TargetPort.IntValue() != redisPort { if port.TargetPort.IntValue() != redisPort {
framework.Failf("Wrong target port: %d") framework.Failf("Wrong target port: %d", port.TargetPort.IntValue())
} }
} }
......
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