about summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorLukas Fleischer2013-08-26 20:38:33 +0200
committerJason A. Donenfeld2013-08-26 21:03:23 +0200
commit840858594e8b48560541792b717a71dd802d5d80 (patch)
treec04992d711f13361dcc096c7235f4e1f2cca5244 /tests
parentui-patch.c: Fix signature delimiter (diff)
downloadcgit-840858594e8b48560541792b717a71dd802d5d80.tar.gz
cgit-840858594e8b48560541792b717a71dd802d5d80.zip
ui-patch.c: Add additional newline after each patch
For consistency with git-format-patch(1).

Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/t0108-patch.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/t0108-patch.sh b/tests/t0108-patch.sh index 867d739..33675af 100755 --- a/tests/t0108-patch.sh +++ b/tests/t0108-patch.sh
@@ -20,7 +20,7 @@ test_expect_success 'find `Subject:` line' '
20' 20'
21 21
22test_expect_success 'find `cgit` signature' ' 22test_expect_success 'find `cgit` signature' '
23 tail -1 tmp | grep "^cgit" 23 tail -2 tmp | head -1 | grep "^cgit"
24' 24'
25 25
26test_expect_success 'find initial commit' ' 26test_expect_success 'find initial commit' '
@@ -32,7 +32,7 @@ test_expect_success 'generate patch for initial commit' '
32' 32'
33 33
34test_expect_success 'find `cgit` signature' ' 34test_expect_success 'find `cgit` signature' '
35 tail -1 tmp | grep "^cgit" 35 tail -2 tmp | head -1 | grep "^cgit"
36' 36'
37 37
38test_done 38test_done