diff options
Diffstat (limited to 'tests/lib.rs')
-rw-r--r-- | tests/lib.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/lib.rs b/tests/lib.rs index 8899e0b..7822f62 100644 --- a/tests/lib.rs +++ b/tests/lib.rs @@ -1,11 +1,10 @@ extern crate modelthing; -extern crate modelica_parser; use std::path::Path; use modelthing::*; -use modelica_parser::*; +use modelthing::modelica_parser::*; #[test] @@ -20,7 +19,7 @@ fn test_search_models() { #[test] fn test_substitute_with() { - use modelica_parser::Expr::*; + use modelthing::modelica_parser::Expr::*; let y = BinExpr(BinOperator::Add, Box::new(Ident("y".to_string())), |