X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/c95cc5ec56dbb7394015eb18201403be6d80f69b..840858594e8b48560541792b717a71dd802d5d80:/tests/t0108-patch.sh diff --git a/tests/t0108-patch.sh b/tests/t0108-patch.sh index 3b5bae4..33675af 100755 --- a/tests/t0108-patch.sh +++ b/tests/t0108-patch.sh @@ -20,11 +20,11 @@ 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' ' - root=$(git --git-dir="$PWD/repos/foo/.git" rev-list HEAD | tail -1) + root=$(git --git-dir="$PWD/repos/foo/.git" rev-list --max-parents=0 HEAD) ' test_expect_success 'generate patch for 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