mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 19:47:45 +00:00
use assert_eq instead of x == y. Better output in case of error
This commit is contained in:
parent
1cd72a621a
commit
ba83e5e901
3 changed files with 3 additions and 3 deletions
|
@ -483,7 +483,7 @@ fn test_install_copy_then_compare_file() {
|
|||
file2_meta = at.metadata(file2);
|
||||
let after = FileTime::from_last_modification_time(&file2_meta);
|
||||
|
||||
assert!(before == after);
|
||||
assert_eq!(before, after);
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue