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:
@@ -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()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user