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/watcher_tests.rs | |
parent | 483c10c94b8a5de49cee4c4b9a3ce74726501c8a (diff) |
chore: use Rust 1.65.0 (#16688)
Diffstat (limited to 'cli/tests/integration/watcher_tests.rs')
-rw-r--r-- | cli/tests/integration/watcher_tests.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/tests/integration/watcher_tests.rs b/cli/tests/integration/watcher_tests.rs index 58f7e11fa..27a1bb620 100644 --- a/cli/tests/integration/watcher_tests.rs +++ b/cli/tests/integration/watcher_tests.rs @@ -219,7 +219,7 @@ fn lint_all_files_on_each_change_test() { let mut child = util::deno_cmd() .current_dir(util::testdata_path()) .arg("lint") - .arg(&t.path()) + .arg(t.path()) .arg("--watch") .arg("--unstable") .stdout(std::process::Stdio::piped()) @@ -349,7 +349,7 @@ fn fmt_check_all_files_on_each_change_test() { let mut child = util::deno_cmd() .current_dir(&fmt_testdata_path) .arg("fmt") - .arg(&t.path()) + .arg(t.path()) .arg("--watch") .arg("--check") .arg("--unstable") @@ -832,7 +832,7 @@ fn test_watch() { .arg("--watch") .arg("--unstable") .arg("--no-check") - .arg(&t.path()) + .arg(t.path()) .env("NO_COLOR", "1") .stdout(std::process::Stdio::piped()) .stderr(std::process::Stdio::piped()) @@ -973,7 +973,7 @@ fn test_watch_doc() { .arg("--watch") .arg("--doc") .arg("--unstable") - .arg(&t.path()) + .arg(t.path()) .env("NO_COLOR", "1") .stdout(std::process::Stdio::piped()) .stderr(std::process::Stdio::piped()) |