diff options
author | Nadrieril | 2019-03-21 15:11:55 +0100 |
---|---|---|
committer | Nadrieril | 2019-03-21 15:37:02 +0100 |
commit | 7bbf42dc5d3727dffcb036ffe30dd433faff1950 (patch) | |
tree | 16ec59df8c3a834e0c0380dd141c18e052453bb3 /dhall/tests/common | |
parent | a304bce542c7685ca02e96e01143dcc69f920f36 (diff) |
Reorganize dhall_core a bit
Diffstat (limited to 'dhall/tests/common')
-rw-r--r-- | dhall/tests/common/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dhall/tests/common/mod.rs b/dhall/tests/common/mod.rs index 75aee38..ffc6d06 100644 --- a/dhall/tests/common/mod.rs +++ b/dhall/tests/common/mod.rs @@ -76,7 +76,7 @@ pub fn run_test(base_path: &str, feature: Feature) { assert_eq_pretty!(expr, expected); // Round-trip pretty-printer - let expr = parser::parse_expr(&expr.to_string()).unwrap(); + let expr = parse_expr(&expr.to_string()).unwrap(); let expr = dhall::imports::panic_imports(&expr); assert_eq!(expr, expected); } |