diff options
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 7fd531c29..53a2501e4 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -153,7 +153,7 @@ fn fmt_test() { #[test] fn installer_test_local_module_run() { - use deno::flags::DenoFlags; + use deno::flags::Flags; use deno::installer; use std::env; use std::path::PathBuf; @@ -164,7 +164,7 @@ fn installer_test_local_module_run() { let local_module = env::current_dir().unwrap().join("tests/echo.ts"); let local_module_str = local_module.to_string_lossy(); installer::install( - DenoFlags::default(), + Flags::default(), Some(temp_dir.path().to_path_buf()), "echo_test", &local_module_str, @@ -202,7 +202,7 @@ fn installer_test_local_module_run() { #[test] fn installer_test_remote_module_run() { - use deno::flags::DenoFlags; + use deno::flags::Flags; use deno::installer; use std::env; use std::path::PathBuf; @@ -212,7 +212,7 @@ fn installer_test_remote_module_run() { let g = util::http_server(); let temp_dir = TempDir::new().expect("tempdir fail"); installer::install( - DenoFlags::default(), + Flags::default(), Some(temp_dir.path().to_path_buf()), "echo_test", "http://localhost:4545/cli/tests/echo.ts", |