1
0
mirror of https://github.com/fumiama/jieba.git synced 2026-06-12 05:00:24 +08:00

make some public variable/function to private

This commit is contained in:
Wang Bin
2015-02-28 17:27:16 +08:00
parent 858ceb5a0b
commit 4b0ddcf666
7 changed files with 85492 additions and 85492 deletions

View File

@@ -5,11 +5,11 @@ import (
)
func TestGet(t *testing.T) {
result := CharStateTab.Get('\u8000')
result := charStateTab.get('\u8000')
if len(result) != 17 {
t.FailNow()
}
result = CharStateTab.Get('\uaaaa')
result = charStateTab.get('\uaaaa')
if len(result) == 17 {
t.FailNow()
}