Fix typo in lexer test.

This commit is contained in:
Julius Volz 2016-03-02 01:13:27 +01:00
parent ca31d36382
commit 9ea2465b99
1 changed files with 2 additions and 2 deletions

View File

@ -101,8 +101,8 @@ var tests = []struct {
},
// Test strings.
{
input: "\"test\\tsecuence\"",
expected: []item{{itemString, 0, `"test\tsecuence"`}},
input: "\"test\\tsequence\"",
expected: []item{{itemString, 0, `"test\tsequence"`}},
},
{
input: "\"test\\\\.expression\"",