mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 12:07:46 +00:00
Merge pull request #4891 from cakebaker/mv_missing_semicolons_to_tests
mv: add missing semicolons to tests
This commit is contained in:
commit
97dc8b2ea9
1 changed files with 3 additions and 3 deletions
|
@ -825,7 +825,7 @@ fn test_mv_arg_update_none() {
|
|||
.no_stderr()
|
||||
.no_stdout();
|
||||
|
||||
assert_eq!(at.read(file2), file2_content)
|
||||
assert_eq!(at.read(file2), file2_content);
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -847,7 +847,7 @@ fn test_mv_arg_update_all() {
|
|||
.no_stderr()
|
||||
.no_stdout();
|
||||
|
||||
assert_eq!(at.read(file2), file1_content)
|
||||
assert_eq!(at.read(file2), file1_content);
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -872,7 +872,7 @@ fn test_mv_arg_update_older_dest_not_older() {
|
|||
.no_stderr()
|
||||
.no_stdout();
|
||||
|
||||
assert_eq!(at.read(new), new_content)
|
||||
assert_eq!(at.read(new), new_content);
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue