1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

uucore: add missing "!"

This commit is contained in:
Daniel Hofstetter 2023-08-21 10:37:48 +02:00
parent 9aa59ef915
commit 808f9e2fd6

View file

@ -860,7 +860,7 @@ mod tests {
let path1 = temp_file1.path(); let path1 = temp_file1.path();
let path2 = temp_file2.path(); let path2 = temp_file2.path();
assert!(are_hardlinks_to_same_file(&path1, &path2)); assert!(!are_hardlinks_to_same_file(&path1, &path2));
} }
#[cfg(unix)] #[cfg(unix)]