Skip to content

Commit 5d683c3

Browse files
Shubhamlmpgitster
authored andcommitted
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 <[email protected]> Reviewed-by: Eric Sunshine <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent d2ecddc commit 5d683c3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

t/t7001-mv.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,9 @@ test_expect_success 'checking the commit' '
145145
'
146146

147147
test_expect_success 'do not move directory over existing directory' '
148-
mkdir path0 && mkdir path0/path2 && test_must_fail git mv path2 path0
148+
mkdir path0 &&
149+
mkdir path0/path2 &&
150+
test_must_fail git mv path2 path0
149151
'
150152

151153
test_expect_success 'move into "."' '

0 commit comments

Comments
 (0)