summaryrefslogtreecommitdiff
path: root/cli/compiler.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/compiler.rs')
-rw-r--r--cli/compiler.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/compiler.rs b/cli/compiler.rs
index a33ccfcb0..de5b5c609 100644
--- a/cli/compiler.rs
+++ b/cli/compiler.rs
@@ -247,7 +247,7 @@ mod tests {
fn test_compile_sync() {
tokio_util::init(|| {
let specifier = "./tests/002_hello.ts";
- use crate::module_specifier::ModuleSpecifier;
+ use deno::ModuleSpecifier;
let module_name = ModuleSpecifier::resolve_root(specifier)
.unwrap()
.to_string();
@@ -294,7 +294,7 @@ mod tests {
#[test]
fn test_bundle_async() {
let specifier = "./tests/002_hello.ts";
- use crate::module_specifier::ModuleSpecifier;
+ use deno::ModuleSpecifier;
let module_name = ModuleSpecifier::resolve_root(specifier)
.unwrap()
.to_string();