aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-06-06 12:18:41 -0700
committerJunio C Hamano <gitster@pobox.com>2013-06-06 12:18:41 -0700
commit5adb37410198bc1d2413df9100bfd5c9f5d844f2 (patch)
tree88965e2e39df491a944391791c586fd384b210cb /t
parent72e719292d5dd6e037fecbc3a1c5e4d4f21f03b8 (diff)
parent1306321ebea4d789974f0d58062664cc35c411e8 (diff)
downloadgit-5adb37410198bc1d2413df9100bfd5c9f5d844f2.tar.gz
git-5adb37410198bc1d2413df9100bfd5c9f5d844f2.tar.xz
Merge branch 'fc/show-branch-in-rebase-am'
The bash prompt code (in contrib/) displayed the name of the branch being rebased when "rebase -i/-m/-p" modes are in use, but not the plain vanilla "rebase". * fc/show-branch-in-rebase-am: prompt: fix for simple rebase
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 083b319ed..15521cc4f 100755
--- a/t/t9903-bash-prompt.sh
+++ b/t/t9903-bash-prompt.sh
@@ -276,7 +276,7 @@ test_expect_success 'prompt - rebase merge' '
'
test_expect_success 'prompt - rebase' '
- printf " ((t2)|REBASE 1/3)" > expected &&
+ printf " (b2|REBASE 1/3)" > expected &&
git checkout b2 &&
test_when_finished "git checkout master" &&
test_must_fail git rebase b1 b2 &&