Fix for Go weekly.2012-01-15.

This commit is contained in:
Dmitry Chestnykh 2012-01-16 14:29:26 +01:00
parent 958b406e0e
commit 00f2f1a9e4
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ func TestNew(t *testing.T) {
for _, c := range u {
var present bool
for _, a := range StdChars {
if int(a) == c {
if rune(a) == c {
present = true
}
}