summaryrefslogtreecommitdiff
path: root/dhall/src/tests.rs
diff options
context:
space:
mode:
authorNadrieril2019-12-20 17:57:49 +0000
committerNadrieril2019-12-20 17:59:59 +0000
commit78d066a44c5598794602effa4c10a09f80ed1e72 (patch)
treeb63a9bdc85b82ad9efb140579250cb11af1e41a9 /dhall/src/tests.rs
parentfd665388b6f1fd80ded9010640ac65cfebca7bc6 (diff)
Move error module to root of crate
Diffstat (limited to 'dhall/src/tests.rs')
-rw-r--r--dhall/src/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/dhall/src/tests.rs b/dhall/src/tests.rs
index 9e5c744..d73c2d4 100644
--- a/dhall/src/tests.rs
+++ b/dhall/src/tests.rs
@@ -47,7 +47,7 @@ use std::fs::File;
use std::io::{Read, Write};
use std::path::PathBuf;
-use crate::semantics::error::{Error, Result};
+use crate::error::{Error, Result};
use crate::semantics::phase::Parsed;
#[allow(dead_code)]