Skip to content

Commit

Permalink
✅ Enhance diff message
Browse files Browse the repository at this point in the history
  • Loading branch information
ChanTsune committed Oct 26, 2024
1 parent b1c8ddf commit 2f1e04a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cli/tests/combination/utils/diff.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ fn diff_dirs(dir1: &Path, dir2: &Path) -> io::Result<Vec<String>> {
path2.display()
));
}
} else {
differences.push(format!(
"File type differ: {} and {}",
path1.display(),
path2.display()
));
}
}

Expand Down

0 comments on commit 2f1e04a

Please sign in to comment.