diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-02-26 05:52:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-26 11:52:15 +0100 |
commit | 9a8d6fbd984d2c0f9775d90af64b3e95231dd21d (patch) | |
tree | 12112b2114a8c739ae741357fde873f522bf7180 /cli/tests/integration_tests.rs | |
parent | 3eebef39c55ead92d17bdf8016c3c58118b49936 (diff) |
DenoFlags -> Flags (#4136)
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", |