diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-08-21 23:26:46 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-08-21 23:26:46 -0700 |
commit | 2eb54692d145a0c2939698302e913975f059ac34 (patch) | |
tree | 88911c7cd362f52770bded7c03b73f32a7d8abb7 /t/t3404-rebase-interactive.sh | |
parent | a0b6a9d2b2b0667bc170c864a05b3ec4635a71bb (diff) | |
parent | e935e62a0fd26ff1f29a98a4ca8fa693f42357a2 (diff) | |
download | git-2eb54692d145a0c2939698302e913975f059ac34.tar.gz |
Merge branch 'dg/local-mod-error-messages'
* dg/local-mod-error-messages:
t7609: test merge and checkout error messages
unpack_trees: group error messages by type
merge-recursive: distinguish "removed" and "overwritten" messages
merge-recursive: porcelain messages for checkout
Turn unpack_trees_options.msgs into an array + enum
Conflicts:
t/t3400-rebase.sh
Diffstat (limited to 't/t3404-rebase-interactive.sh')
-rwxr-xr-x | t/t3404-rebase-interactive.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh index 9f03ce699e..3af3f603fb 100755 --- a/t/t3404-rebase-interactive.sh +++ b/t/t3404-rebase-interactive.sh @@ -150,8 +150,9 @@ test_expect_success 'abort with error when new base cannot be checked out' ' git rm --cached file1 && git commit -m "remove file in base" && test_must_fail git rebase -i master > output 2>&1 && - grep "Untracked working tree file .file1. would be overwritten" \ + grep "The following untracked working tree files would be overwritten by checkout:" \ output && + grep "file1" output && ! test -d .git/rebase-merge && git reset --hard HEAD^ ' |