diff options
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(); |