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 <liu.denton@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Denton Liu committed
Aug 27, 2019 at 00:04 UTC
cb46c4066231879ea1c4b36c6c45d40446d7af09
1 file changed
+4
-2
t/t4014-format-patch.sh
+4
-2
@@ -790,11 +790,13 @@ test_expect_success 'options no longer allowed for format-patch' '
790
test_must_fail git format-patch --name-status 2> output &&
791
test_i18ncmp expect.name-status output &&
792
test_must_fail git format-patch --check 2> output &&
793
- test_i18ncmp expect.check output'
793
+ test_i18ncmp expect.check output
794
+'
795
796
test_expect_success 'format-patch --numstat should produce a patch' '
797
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
+'
800
801
test_expect_success 'format-patch -- <path>' '
802
git format-patch master..side -- file 2>error &&