Skip to content

Commit cb46c40

Browse files
Denton-Lgitster
authored andcommitted
t4014: move closing sq onto its own line
The usual convention for test cases is for the closing sq to be on its own line. Move the sq onto its own line for cases that do not conform to this style. Signed-off-by: Denton Liu <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent b562a54 commit cb46c40

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

t/t4014-format-patch.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -790,11 +790,13 @@ test_expect_success 'options no longer allowed for format-patch' '
790790
test_must_fail git format-patch --name-status 2> output &&
791791
test_i18ncmp expect.name-status output &&
792792
test_must_fail git format-patch --check 2> output &&
793-
test_i18ncmp expect.check output'
793+
test_i18ncmp expect.check output
794+
'
794795

795796
test_expect_success 'format-patch --numstat should produce a patch' '
796797
git format-patch --numstat --stdout master..side > output &&
797-
test 5 = $(grep "^diff --git a/" output | wc -l)'
798+
test 5 = $(grep "^diff --git a/" output | wc -l)
799+
'
798800

799801
test_expect_success 'format-patch -- <path>' '
800802
git format-patch master..side -- file 2>error &&

0 commit comments

Comments
 (0)