commit | 1b69f6830344d3b517d29e45add5ef6418fc6ca5 | [log] [tgz] |
---|---|---|
author | Gregory Katz <gregkatz@gmail.com> | Tue Sep 27 21:06:09 2016 -0400 |
committer | Gregory Katz <gregkatz@gmail.com> | Tue Sep 27 21:06:09 2016 -0400 |
tree | dbe92bc235296cca176e2a0e7c484310eede547a | |
parent | e5f3568a7f1b4266c47c914b6e1ee7653b09a1e0 [diff] |
addressed review comments
diff --git a/tests/test_expr.rs b/tests/test_expr.rs index 0459da7..587102f 100644 --- a/tests/test_expr.rs +++ b/tests/test_expr.rs
@@ -37,7 +37,7 @@ let raw = "' test : loop{(1, 5, 9, 11)}"; - let expected = Expr::Loop(block, Some("test".into())); + let expected = Expr::Loop(block, Some("'test".into())); assert_eq!(expected, parse_expr(raw).unwrap()); }