From c213ad380f349dee1f65e6d9a9f7a8fa669b2af2 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Fri, 17 Nov 2023 22:46:15 -0500 Subject: chore: combine `TestCommandBuilder` with `DenoCmd` (#21248) --- cli/tests/integration/info_tests.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cli/tests/integration/info_tests.rs') diff --git a/cli/tests/integration/info_tests.rs b/cli/tests/integration/info_tests.rs index bfba40080..47c5cc1d0 100644 --- a/cli/tests/integration/info_tests.rs +++ b/cli/tests/integration/info_tests.rs @@ -11,7 +11,7 @@ fn info_with_compiled_source() { let output = context .new_command() - .cwd(util::testdata_path()) + .current_dir(util::testdata_path()) .args_vec(["cache", module_path]) .run(); output.assert_exit_code(0); @@ -19,7 +19,7 @@ fn info_with_compiled_source() { let output = context .new_command() - .cwd(util::testdata_path()) + .current_dir(util::testdata_path()) .args_vec(["info", module_path]) .split_output() .run(); -- cgit v1.2.3