diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2024-09-11 12:52:46 +0100 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2024-09-11 13:05:57 +0100 |
| commit | df1660b1b78b5881c64c6fadd4ae12c8c01c6684 (patch) | |
| tree | 044bcfc85d3cffe3ede73e1285cacaf30aaa981d /test_utils/src | |
| parent | db17699af4b0ec839b8340766aab91bacf974cd4 (diff) | |
refactor: fix fmt and clippy issues
which potentially were only identified when a dependancy was updated
Diffstat (limited to 'test_utils/src')
| -rw-r--r-- | test_utils/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
| 1024 | for entry in (std::fs::read_dir(src)?).flatten() { | 1024 | for entry in (std::fs::read_dir(src)?).flatten() { |
| 1025 | let src_path = entry.path(); | 1025 | let src_path = entry.path(); |
| 1026 | if let Some(name) = src_path.file_name() { | 1026 | if let Some(name) = src_path.file_name() { |
| 1027 | let _ = std::fs::copy(&src_path, &git_exec_dir.join(name)); | 1027 | let _ = std::fs::copy(&src_path, git_exec_dir.join(name)); |
| 1028 | } | 1028 | } |
| 1029 | } | 1029 | } |
| 1030 | } | 1030 | } |