Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
WindSoilder committed May 20, 2023
1 parent 3cfeed7 commit 8962d11
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions crates/nu-command/tests/commands/move_/mv.rs
Expand Up @@ -481,9 +481,7 @@ fn mv_with_update_flag() {

// create a file after assert to make sure that newest_valid.txt is newest
std::thread::sleep(std::time::Duration::from_secs(1));
sandbox.with_files(vec![
FileWithContent("newest_valid.txt", "newest_body")
]);
sandbox.with_files(vec![FileWithContent("newest_valid.txt", "newest_body")]);
let actual = nu!(cwd: sandbox.cwd(), "mv -uf newest_valid.txt valid.txt; open valid.txt");
assert_eq!(actual.out, "newest_body");
});
Expand Down

0 comments on commit 8962d11

Please sign in to comment.