1
0

ui-patch.c: Add additional newline after each patch

For consistency with git-format-patch(1).

Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Este cometimento está contido em:
Lukas Fleischer
2013-08-26 20:38:33 +02:00
cometido por Jason A. Donenfeld
ascendente 334aed8ab4
cometimento 840858594e
2 ficheiros modificados com 3 adições e 3 eliminações

Ver ficheiro

@@ -20,7 +20,7 @@ test_expect_success 'find `Subject:` line' '
'
test_expect_success 'find `cgit` signature' '
tail -1 tmp | grep "^cgit"
tail -2 tmp | head -1 | grep "^cgit"
'
test_expect_success 'find initial commit' '
@@ -32,7 +32,7 @@ test_expect_success 'generate patch for initial commit' '
'
test_expect_success 'find `cgit` signature' '
tail -1 tmp | grep "^cgit"
tail -2 tmp | head -1 | grep "^cgit"
'
test_done