From 840858594e8b48560541792b717a71dd802d5d80 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Mon, 26 Aug 2013 20:38:33 +0200 Subject: ui-patch.c: Add additional newline after each patch For consistency with git-format-patch(1). Signed-off-by: Lukas Fleischer --- tests/t0108-patch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/t0108-patch.sh') 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' ' ' 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 -- cgit v1.2.3-59-g8ed1b