summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2016-09-12 15:34:37 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2016-09-12 15:34:37 -0700
commit038763c71aef650178b8f0ace2118eae882ae61f (patch)
treec41d1cb85f3450b65995e690ffad839fb438cab0 /t
parentMerge branch 'rs/hex2chr' (diff)
parentt9903: fix broken && chain (diff)
downloadtgif-038763c71aef650178b8f0ace2118eae882ae61f.tar.xz
Merge branch 'js/t9903-chaining'
* js/t9903-chaining: t9903: fix broken && chain
Diffstat (limited to 't')
-rwxr-xr-xt/t9903-bash-prompt.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9903-bash-prompt.sh b/t/t9903-bash-prompt.sh
index 0db4469c89..97c9b32c2e 100755
--- a/t/t9903-bash-prompt.sh
+++ b/t/t9903-bash-prompt.sh
@@ -177,7 +177,7 @@ test_expect_success 'prompt - interactive rebase' '
git checkout b1 &&
test_when_finished "git checkout master" &&
git rebase -i HEAD^ &&
- test_when_finished "git rebase --abort"
+ test_when_finished "git rebase --abort" &&
__git_ps1 >"$actual" &&
test_cmp expected "$actual"
'