aboutsummaryrefslogtreecommitdiff
path: root/t/t3404-rebase-interactive.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2007-11-13 13:05:50 -0800
committerJunio C Hamano <gitster@pobox.com>2007-11-13 13:25:23 -0800
commitaac5bf0b48c5f23cf482ca7958fa6815fe6502ed (patch)
tree76e298526af81567319e7bcdd0c3b881bfc308f0 /t/t3404-rebase-interactive.sh
parent9b2a1821245c0e638f7b5e9da81118743fcc0120 (diff)
downloadgit-aac5bf0b48c5f23cf482ca7958fa6815fe6502ed.tar.gz
git-aac5bf0b48c5f23cf482ca7958fa6815fe6502ed.tar.xz
t/t3404: fix test for a bogus todo file.
The test wants to see if there are still remaining tasks, but checked a wrong file. 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 6c92d6119..984146b5c 100755
--- a/t/t3404-rebase-interactive.sh
+++ b/t/t3404-rebase-interactive.sh
@@ -149,7 +149,7 @@ test_expect_success 'stop on conflicting pick' '
diff -u expect .git/.dotest-merge/patch &&
diff -u expect2 file1 &&
test 4 = $(grep -v "^#" < .git/.dotest-merge/done | wc -l) &&
- test 0 = $(grep -v "^#" < .git/.dotest-merge/todo | wc -l)
+ test 0 = $(grep -v "^#" < .git/.dotest-merge/git-rebase-todo | wc -l)
'
test_expect_success 'abort' '