You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnfmt.Errorf("authentication ClusterOperator status has operands %v in versions when they should be unset", foundOperands)
892
+
return[]error{fmt.Errorf("authentication ClusterOperator status has operands %v in versions when they should be unset", foundOperands)}
893
893
}
894
894
895
895
foundSet:=sets.New(foundOperands...)
896
896
if!requireMissing&&!foundSet.Equal(operands) {
897
-
returnfmt.Errorf("authentication ClusterOperator status expected to have operands %v in versions but got %v", operands.UnsortedList(), foundOperands)
897
+
return[]error{fmt.Errorf("authentication ClusterOperator status expected to have operands %v in versions but got %v", operands.UnsortedList(), foundOperands)}
0 commit comments