diff options
Diffstat (limited to 'src/tokenizer_test.go')
| -rw-r--r-- | src/tokenizer_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tokenizer_test.go b/src/tokenizer_test.go index 39f32dc8..a471a2fc 100644 --- a/src/tokenizer_test.go +++ b/src/tokenizer_test.go @@ -85,14 +85,14 @@ func TestTransform(t *testing.T) { { ranges, _ := splitNth("1,2,3") tx := Transform(tokens, ranges) - if joinTokens(tx) != "abc: def: ghi: " { + if JoinTokens(tx) != "abc: def: ghi: " { t.Errorf("%s", tx) } } { ranges, _ := splitNth("1..2,3,2..,1") tx := Transform(tokens, ranges) - if string(joinTokens(tx)) != "abc: def: ghi: def: ghi: jklabc: " || + if string(JoinTokens(tx)) != "abc: def: ghi: def: ghi: jklabc: " || len(tx) != 4 || tx[0].text.ToString() != "abc: def: " || tx[0].prefixLength != 2 || tx[1].text.ToString() != "ghi: " || tx[1].prefixLength != 14 || @@ -107,7 +107,7 @@ func TestTransform(t *testing.T) { { ranges, _ := splitNth("1..2,3,2..,1") tx := Transform(tokens, ranges) - if joinTokens(tx) != " abc: def: ghi: def: ghi: jkl abc:" || + if JoinTokens(tx) != " abc: def: ghi: def: ghi: jkl abc:" || len(tx) != 4 || tx[0].text.ToString() != " abc: def:" || tx[0].prefixLength != 0 || tx[1].text.ToString() != " ghi:" || tx[1].prefixLength != 12 || |
