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

mv: add missing semicolons to tests

This commit is contained in:
Daniel Hofstetter 2023-05-23 07:23:42 +02:00
parent 58f6001af7
commit 2f4b57ca97

View file

@ -825,7 +825,7 @@ fn test_mv_arg_update_none() {
.no_stderr() .no_stderr()
.no_stdout(); .no_stdout();
assert_eq!(at.read(file2), file2_content) assert_eq!(at.read(file2), file2_content);
} }
#[test] #[test]
@ -847,7 +847,7 @@ fn test_mv_arg_update_all() {
.no_stderr() .no_stderr()
.no_stdout(); .no_stdout();
assert_eq!(at.read(file2), file1_content) assert_eq!(at.read(file2), file1_content);
} }
#[test] #[test]
@ -872,7 +872,7 @@ fn test_mv_arg_update_older_dest_not_older() {
.no_stderr() .no_stderr()
.no_stdout(); .no_stdout();
assert_eq!(at.read(new), new_content) assert_eq!(at.read(new), new_content);
} }
#[test] #[test]