diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-11-17 22:46:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-17 22:46:15 -0500 |
commit | c213ad380f349dee1f65e6d9a9f7a8fa669b2af2 (patch) | |
tree | 9265e433c2691bf39c699617b87f755c1d025908 /cli/tests/integration/info_tests.rs | |
parent | 4a2d8c4bbd20cc282b4df42fe5da6414447315e0 (diff) |
chore: combine `TestCommandBuilder` with `DenoCmd` (#21248)
Diffstat (limited to 'cli/tests/integration/info_tests.rs')
-rw-r--r-- | cli/tests/integration/info_tests.rs | 4 |
1 files changed, 2 insertions, 2 deletions
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(); |