Skip to content

Commit

Permalink
fix cargo clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
meteorgan committed Nov 30, 2024
1 parent 7431476 commit 8ddcdfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/oli/tests/mv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ async fn test_mv_with_recursive() -> Result<()> {
let dst_file2_content =
fs::read_to_string(dst_path.path().join("dir/file2.txt")).expect("read dir/file2 error");
assert_eq!(dst_file2_content, file2_content);
assert!(fs::exists(&dst_path.path().join("empty_dir/"))?);
assert!(fs::exists(dst_path.path().join("empty_dir/"))?);

assert!(!fs::exists(&src_path)?);

Expand Down

0 comments on commit 8ddcdfd

Please sign in to comment.