Unverified Commit 2472d673 authored by k8s-ci-robot's avatar k8s-ci-robot Committed by GitHub

Merge pull request #68218 from jcsirot/fix-SkipIfMultizone-message

Fix the skip message since it was the exact opposite of the tested co…
parents dbdcb7e0 69002594
...@@ -350,7 +350,7 @@ func SkipIfMultizone(c clientset.Interface) { ...@@ -350,7 +350,7 @@ func SkipIfMultizone(c clientset.Interface) {
Skipf("Error listing cluster zones") Skipf("Error listing cluster zones")
} }
if zones.Len() > 1 { if zones.Len() > 1 {
Skipf("Requires more than one zone") Skipf("Requires at most one zone")
} }
} }
......
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