diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2019-06-13 01:55:59 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-06-12 16:55:59 -0700 |
commit | bca5cc5041172e22ad1851c8510d6521bf70ec22 (patch) | |
tree | a772e0619cb6007c603fd1821b130269b3cfeb75 /cli/compiler.rs | |
parent | b3c4307d02d627287cd28486b208b53c3bd378f0 (diff) |
Move ModuleSpecifier to //core (#2509)
Diffstat (limited to 'cli/compiler.rs')
-rw-r--r-- | cli/compiler.rs | 4 |
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(); |