Skip to content

Commit

Permalink
asm/lexer: Fix test case 11. Updates #8.
Browse files Browse the repository at this point in the history
  • Loading branch information
mewmew committed Jan 16, 2015
1 parent 024d987 commit 6dec6b1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions asm/lexer/lexer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,7 @@ func TestParse(t *testing.T) {
{
input: "....foo:",
want: []token.Token{
{Kind: token.Ellipsis, Val: "...", Line: 1, Col: 1},
{Kind: token.Label, Val: ".foo", Line: 1, Col: 4},
{Kind: token.Label, Val: "....foo", Line: 1, Col: 1},
{Kind: token.EOF, Line: 1, Col: 9},
},
},
Expand Down

0 comments on commit 6dec6b1

Please sign in to comment.