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