From e3ce2bd9829bbe14e5da26505ac9d68ae0d2af2d Mon Sep 17 00:00:00 2001 From: dennsikl Date: Wed, 26 Mar 2025 09:07:11 +0200 Subject: [PATCH] Remove needless borrow to fix Clippy warning --- test/lint/test_runner/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lint/test_runner/src/main.rs b/test/lint/test_runner/src/main.rs index 0d785682bb2..2634e3a228e 100644 --- a/test/lint/test_runner/src/main.rs +++ b/test/lint/test_runner/src/main.rs @@ -250,7 +250,7 @@ fn lint_scripted_diff() -> LintResult { fn lint_commit_msg() -> LintResult { let mut good = true; - let commit_hashes = check_output(git().args(&[ + let commit_hashes = check_output(git().args([ "-c", "log.showSignature=false", "log",