From 8f778c57a3edbc98c56c75713ddf91b09f71b93a Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Thu, 4 Jun 2020 18:40:14 -0400 Subject: [PATCH] test more string cases --- irc/strings_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irc/strings_test.go b/irc/strings_test.go index 9bb487f5..44f368af 100644 --- a/irc/strings_test.go +++ b/irc/strings_test.go @@ -106,7 +106,7 @@ func TestCasefoldName(t *testing.T) { for _, errCase := range []string{ "", "#", "foo,bar", "star*man*junior", "lo7t?", "f.l", "excited!nick", "foo@bar", ":trail", - "~o", "&o", "@o", "%h", "+v", "-m", + "~o", "&o", "@o", "%h", "+v", "-m", "\t", "a\tb", } { testCases = append(testCases, nameTest{name: errCase, err: true}) }