t3419: stop losing return code of git command

Fix invocation of git command so its exit codes is not lost within
a non-assignment command substitution.

Signed-off-by: Denton Liu <liu.denton@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Denton Liu 2020-01-06 23:53:09 -05:00 committed by Junio C Hamano
parent c232ffa83c
commit 1c9fd32fd2
1 changed files with 2 additions and 1 deletions

View File

@ -80,7 +80,8 @@ do_tests () {
git commit -q -m "change big file again" &&
git checkout -q other^{} &&
git rebase master &&
test_must_fail test -n "$(git rev-list master...HEAD~)"
git rev-list master...HEAD~ >revs &&
test_must_be_empty revs
'

test_expect_success $pr 'do not drop patch' '