From df1660b1b78b5881c64c6fadd4ae12c8c01c6684 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Wed, 11 Sep 2024 12:52:46 +0100 Subject: refactor: fix fmt and clippy issues which potentially were only identified when a dependancy was updated --- test_utils/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test_utils/src/lib.rs') diff --git a/test_utils/src/lib.rs b/test_utils/src/lib.rs index deff86e..be51ed9 100644 --- a/test_utils/src/lib.rs +++ b/test_utils/src/lib.rs @@ -1024,7 +1024,7 @@ where for entry in (std::fs::read_dir(src)?).flatten() { let src_path = entry.path(); if let Some(name) = src_path.file_name() { - let _ = std::fs::copy(&src_path, &git_exec_dir.join(name)); + let _ = std::fs::copy(&src_path, git_exec_dir.join(name)); } } } -- cgit v1.2.3