summaryrefslogtreecommitdiff
path: root/t/t3404-rebase-interactive.sh
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2013-05-28 12:54:31 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-05-28 16:03:20 (GMT)
commit6f87f038972afef0d7d256073ddfd8930e4b909d (patch)
treeadc9f4e4f0cc075d85d5ac218d7a75f956d0610e /t/t3404-rebase-interactive.sh
parent15c7348eb0731f33a65fb08a27979640d44a7a3d (diff)
downloadgit-6f87f038972afef0d7d256073ddfd8930e4b909d.zip
git-6f87f038972afef0d7d256073ddfd8930e4b909d.tar.gz
git-6f87f038972afef0d7d256073ddfd8930e4b909d.tar.bz2
test: rebase: fix --interactive test
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t3404-rebase-interactive.sh')
-rwxr-xr-xt/t3404-rebase-interactive.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh
index a58406d..79e8d3c 100755
--- a/t/t3404-rebase-interactive.sh
+++ b/t/t3404-rebase-interactive.sh
@@ -692,7 +692,7 @@ test_expect_success 'rebase -i can copy notes' '
test_commit n2 &&
test_commit n3 &&
git notes add -m"a note" n3 &&
- git rebase --onto n1 n2 &&
+ git rebase -i --onto n1 n2 &&
test "a note" = "$(git notes show HEAD)"
'