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 <shubhunic@gmail.com>
Reviewed-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Shubham Verma 2021-02-12 01:17:02 +05:30 committed by Junio C Hamano
parent d2ecddc981
commit 5d683c3f4b

View file

@ -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 "."' '