Skip to content

Commit

Permalink
Merge pull request #133 from tychy/pass-1147
Browse files Browse the repository at this point in the history
pass 1147
  • Loading branch information
tychy authored Sep 7, 2024
2 parents 1c05c4c + a5550a9 commit 20e6ec4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type TestData struct {
}

func TestToukiboParser(t *testing.T) {
testCount := 1122
testCount := 1147

for i := 1; i <= testCount; i++ {
t.Run(fmt.Sprintf("test%d", i), func(t *testing.T) {
Expand Down
4 changes: 4 additions & 0 deletions toukibo/zenkaku.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ func normalizeKanji(input string) string {
sb.WriteRune('榊')
case 58305:
sb.WriteRune('角')
case 58069:
sb.WriteRune('荒')
case 60981:
sb.WriteRune('藤')
default:
sb.WriteRune(r)
}
Expand Down

0 comments on commit 20e6ec4

Please sign in to comment.