Fixed minor issue in kubernetes_test.go

Fixed identical expression in kubernetes_test.go
This commit is contained in:
Suraj Narwade 2017-07-11 14:51:29 +05:30
parent 51a488c3bc
commit 8f6822588a

View File

@ -68,7 +68,7 @@ func equalStringSlice(s1, s2 []string) bool {
return false
}
for i := range s1 {
if s1[i] != s1[i] {
if s1[i] != s2[i] {
return false
}
}