diff options
| author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2022-11-17 22:59:10 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-18 02:59:10 +0100 |
| commit | 238590aa9fdfe2aac04bb96abad2f2d2feb3101a (patch) | |
| tree | f8fa04e39baecb5460076c1329ca38ae31f440b6 /cli/tests/integration/info_tests.rs | |
| parent | 483c10c94b8a5de49cee4c4b9a3ce74726501c8a (diff) | |
chore: use Rust 1.65.0 (#16688)
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 0cb875078..0d2d81cc0 100644 --- a/cli/tests/integration/info_tests.rs +++ b/cli/tests/integration/info_tests.rs @@ -15,7 +15,7 @@ fn info_with_compiled_source() { .env("DENO_DIR", t.path()) .current_dir(util::testdata_path()) .arg("cache") - .arg(&module_path) + .arg(module_path) .spawn() .unwrap(); let status = deno.wait().unwrap(); @@ -26,7 +26,7 @@ fn info_with_compiled_source() { .env("NO_COLOR", "1") .current_dir(util::testdata_path()) .arg("info") - .arg(&module_path) + .arg(module_path) .output() .unwrap(); |
