diff --git a/uniuri_test.go b/uniuri_test.go index a2478af..c9c3ffb 100644 --- a/uniuri_test.go +++ b/uniuri_test.go @@ -12,7 +12,7 @@ import "testing" func validateChars(t *testing.T, u string, chars []byte) { for _, c := range u { var present bool - for _, a := range StdChars { + for _, a := range chars { if rune(a) == c { present = true }