aboutsummaryrefslogtreecommitdiffstats
path: root/modelica-parser-lalrpop/tests/ast.rs
diff options
context:
space:
mode:
Diffstat (limited to 'modelica-parser-lalrpop/tests/ast.rs')
-rw-r--r--modelica-parser-lalrpop/tests/ast.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/modelica-parser-lalrpop/tests/ast.rs b/modelica-parser-lalrpop/tests/ast.rs
index 24407b8..51c1014 100644
--- a/modelica-parser-lalrpop/tests/ast.rs
+++ b/modelica-parser-lalrpop/tests/ast.rs
@@ -3,7 +3,7 @@ extern crate modelica_parser;
use std::collections::HashSet;
use std::iter::FromIterator;
-use modelica_parser::ast::*;
+use modelica_parser::*;
fn set_eq(a: Vec<String>, b: Vec<String>) -> bool {
let set_a: HashSet<String> = HashSet::from_iter(a);
@@ -13,7 +13,7 @@ fn set_eq(a: Vec<String>, b: Vec<String>) -> bool {
#[test]
fn test_expr_identifiers() {
- use modelica_parser::ast::Expr::*;
+ use modelica_parser::Expr::*;
assert!(set_eq(
vec![],
@@ -37,7 +37,7 @@ fn test_expr_identifiers() {
#[test]
fn test_eqn_identifiers() {
- use modelica_parser::ast::Expr::*;
+ use modelica_parser::Expr::*;
assert!(set_eq(
vec![],