Commit 3a0b253f authored by Jean-Christophe Sirot's avatar Jean-Christophe Sirot

Fix the skip message since it was the exact opposite of the tested condition

parent 5b355f5d
...@@ -359,7 +359,7 @@ func SkipIfMultizone(c clientset.Interface) { ...@@ -359,7 +359,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 exactly 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