aboutsummaryrefslogtreecommitdiff
path: root/driver/lexer_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'driver/lexer_test.go')
-rw-r--r--driver/lexer_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/lexer_test.go b/driver/lexer_test.go
index 0156ef8..1d0e887 100644
--- a/driver/lexer_test.go
+++ b/driver/lexer_test.go
@@ -558,8 +558,8 @@ func testToken(t *testing.T, expected, actual *Token) {
if actual.Mode != expected.Mode ||
actual.ModeName != actual.ModeName ||
- actual.ID != expected.ID ||
actual.Kind != expected.Kind ||
+ actual.KindName != expected.KindName ||
!bytes.Equal(actual.Match(), expected.Match()) ||
actual.EOF != expected.EOF ||
actual.Invalid != expected.Invalid {