test: rebase: fix --interactive test

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Felipe Contreras 2013-05-28 07:54:31 -05:00 коммит произвёл Junio C Hamano
Родитель 15c7348eb0
Коммит 6f87f03897
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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)"
'