Skip to content

Commit

Permalink
t/t3404: fix test for a bogus todo file.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Junio C Hamano committed Nov 13, 2007
1 parent 9b2a182 commit aac5bf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/t3404-rebase-interactive.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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' '
Expand Down

0 comments on commit aac5bf0

Please sign in to comment.