From a8fe8282b3a016779e6701abc252eadc622e2a89 Mon Sep 17 00:00:00 2001 From: Nick Dumas Date: Sun, 2 Jul 2023 10:04:02 -0400 Subject: [PATCH] passing tests --- lexer_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/lexer_test.go b/lexer_test.go index 2bc3225..a0a7293 100644 --- a/lexer_test.go +++ b/lexer_test.go @@ -66,6 +66,7 @@ func Test_Lexer(t *testing.T) { { name: "#heading", in: "[[#heading]]", expected: []wikilink.Lexeme{ {Typ: wikilink.LexOpenLink, Val: "[["}, + {Typ: wikilink.LexIdent, Val: ""}, {Typ: wikilink.LexHeading, Val: "#"}, {Typ: wikilink.LexIdent, Val: "heading"}, {Typ: wikilink.LexCloseLink, Val: "]]"},