From 9a8d6fbd984d2c0f9775d90af64b3e95231dd21d Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 26 Feb 2020 05:52:15 -0500 Subject: DenoFlags -> Flags (#4136) --- cli/tests/integration_tests.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cli/tests/integration_tests.rs') 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", -- cgit v1.2.3