summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-01-13 14:36:40 +0100
committerLaurenz <laurmaedje@gmail.com>2020-01-13 14:36:40 +0100
commitdde69276d47818174c35523c8ed86b6888b6d02b (patch)
tree68f0f56efd42f47156fddf67158cdcdcde3717b9 /tests
parent6527d31dfba78330a39e52d7772f6c8561fb23ef (diff)
Refactor expressions and create tuples and objects 🧮
Diffstat (limited to 'tests')
-rw-r--r--tests/parse.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/parse.rs b/tests/parse.rs
index 02c4f9b7..3e46dd4a 100644
--- a/tests/parse.rs
+++ b/tests/parse.rs
@@ -10,7 +10,7 @@ use Token::{
LeftParen as LP, RightParen as RP,
LeftBrace as LBR, RightBrace as RBR,
Colon as CL, Comma as CM, Equals as EQ,
- ExprIdent as ID, ExprString as STR, ExprSize as SIZE,
+ ExprIdent as ID, ExprStr as STR, ExprSize as SIZE,
ExprNumber as NUM, ExprBool as BOOL,
Star as ST, Underscore as U, Backtick as B, Text as T,
};