Fix typo in lexer test.

This commit is contained in:
Julius Volz 2016-03-02 01:13:27 +01:00
parent ca31d36382
commit 9ea2465b99

View file

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