aboutsummaryrefslogtreecommitdiff
path: root/lexer/lexer_test.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <sokolyuk@gmail.com>2022-08-24 14:16:17 +0200
committerDimitri Sokolyuk <sokolyuk@gmail.com>2022-08-24 14:16:17 +0200
commit52be3f62da85d2e6a4bba77c234b181a14354523 (patch)
treebee25a59fe001bce71e0d8e07997033845b790d7 /lexer/lexer_test.go
parentcb3d5e76156cb87d14f048c1ef651b9674e865a5 (diff)
cleanup
Diffstat (limited to 'lexer/lexer_test.go')
-rw-r--r--lexer/lexer_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexer/lexer_test.go b/lexer/lexer_test.go
index e692fea..d66ad73 100644
--- a/lexer/lexer_test.go
+++ b/lexer/lexer_test.go
@@ -107,7 +107,7 @@ macro(x, y) { x + y; };
{token.INTEGER, "10"},
{token.SEMICOLON, ";"},
{token.INTEGER, "10"},
- {token.NOT_EQ, "!="},
+ {token.NOTEQ, "!="},
{token.INTEGER, "9"},
{token.SEMICOLON, ";"},
{token.STRING, "foobar"},