diff options
Diffstat (limited to 'mardown/lexer_test.go')
| -rw-r--r-- | mardown/lexer_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mardown/lexer_test.go b/mardown/lexer_test.go index c9ec349..8fe81cc 100644 --- a/mardown/lexer_test.go +++ b/mardown/lexer_test.go @@ -16,7 +16,7 @@ func TestLex(t *testing.T) { t.Errorf("invalid lex, got %s", lxs) } lxs = lex("***hey***, what's up?") - if lxs.String() != "Lexers[modifier(**) modifier(*) literal(hey) modifier(*) modifier(**) literal(, what's up?) ]" { + if lxs.String() != "Lexers[modifier(***) literal(hey) modifier(***) literal(, what's up?) ]" { t.Errorf("invalid lex, got %s", lxs) } lxs = lex(`Xxx\_DarkEmperor\_xxX`) |
