Skip to content

Commit aac5bf0

Browse files
committed
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>
1 parent 9b2a182 commit aac5bf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t3404-rebase-interactive.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ test_expect_success 'stop on conflicting pick' '
149149
diff -u expect .git/.dotest-merge/patch &&
150150
diff -u expect2 file1 &&
151151
test 4 = $(grep -v "^#" < .git/.dotest-merge/done | wc -l) &&
152-
test 0 = $(grep -v "^#" < .git/.dotest-merge/todo | wc -l)
152+
test 0 = $(grep -v "^#" < .git/.dotest-merge/git-rebase-todo | wc -l)
153153
'
154154

155155
test_expect_success 'abort' '

0 commit comments

Comments
 (0)