From: Shubham Verma Date: Thu, 11 Feb 2021 19:47:02 +0000 (+0530) Subject: t7001: put each command on a separate line X-Git-Tag: v2.31.0-rc1~6^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5d683c3f4bcef667ca128d3d737fd36118d49a3d;p=thirdparty%2Fgit.git t7001: put each command on a separate line Modern practice is to avoid multiple commands per line, and instead place each command on its own line. Signed-off-by: Shubham Verma Reviewed-by: Eric Sunshine Signed-off-by: Junio C Hamano --- diff --git a/t/t7001-mv.sh b/t/t7001-mv.sh index cd67fe0bd1..f55d18ed9c 100755 --- a/t/t7001-mv.sh +++ b/t/t7001-mv.sh @@ -145,7 +145,9 @@ test_expect_success 'checking the commit' ' ' test_expect_success 'do not move directory over existing directory' ' - mkdir path0 && mkdir path0/path2 && test_must_fail git mv path2 path0 + mkdir path0 && + mkdir path0/path2 && + test_must_fail git mv path2 path0 ' test_expect_success 'move into "."' '