fixed automatic_test

This commit is contained in:
boombuler 2013-12-11 21:48:57 +01:00
parent 29d3fcfa98
commit bbd6a37d76
1 changed files with 3 additions and 3 deletions

View File

@ -7,9 +7,9 @@ import (
func Test_AutomaticEncoding(t *testing.T) {
tests := map[string]encodeFn{
"0123456789": Numeric.getEncoder(),
"ALPHA NUMERIC": AlphaNumeric.getEncoder(),
"no matching encoing": nil,
"0123456789": Numeric.getEncoder(),
"ALPHA NUMERIC": AlphaNumeric.getEncoder(),
"unicode encoing": Unicode.getEncoder(),
}
for str, enc := range tests {