Skip to content

Commit 107f4be

Browse files
committed
Fix lint
1 parent 44638f4 commit 107f4be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

encoderfile/tests/integration/test_build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ fn copy_dir_all(src: impl AsRef<Path>, dst: impl AsRef<Path>) -> anyhow::Result<
250250
let src = src.as_ref();
251251
let dst = dst.as_ref();
252252

253-
fs::create_dir_all(dst).context(format!("Failed to create directory {:?}", &dst))?;
253+
fs::create_dir_all(dst).context(format!("Failed to create directory {:?}", dst))?;
254254

255255
for entry in fs::read_dir(src)? {
256256
let entry = entry?;

0 commit comments

Comments
 (0)