From 2f4b57ca973c4ab9036d63ef0fcbc211f0b79fcc Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Tue, 23 May 2023 07:23:42 +0200 Subject: [PATCH] mv: add missing semicolons to tests --- tests/by-util/test_mv.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/by-util/test_mv.rs b/tests/by-util/test_mv.rs index 5c1d6c747..39eaed1e7 100644 --- a/tests/by-util/test_mv.rs +++ b/tests/by-util/test_mv.rs @@ -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]