From: Felipe Contreras Date: Tue, 28 May 2013 12:54:31 +0000 (-0500) Subject: test: rebase: fix --interactive test X-Git-Tag: v1.8.4-rc0~211^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6f87f038972afef0d7d256073ddfd8930e4b909d;p=thirdparty%2Fgit.git test: rebase: fix --interactive test Signed-off-by: Felipe Contreras Signed-off-by: Junio C Hamano --- diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh index a58406d12f..79e8d3c596 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)" '