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
} else if actual[lenActual-1] != datum.Expected[lenExpected-1] {
equal = false
} else {
for j := 0 ; j < lenActual ; j++ {
if actual[j] != datum.Expected[j] {
equal = false
}
}
}
if !equal {
t.Errorf("Did NOT get what was expected for calling StemWithoutLowerCasing() on [%s]. Expect [%s] but got [%s]", string(datum.S), string(datum.Expected), string(actual))